AppleScript Outlook

I cant get text the way I want in body of email in Outlook

here is what I want:
eMam
test

here is my code

tell application "Microsoft Outlook"
	activate
	
	set theContent to return & return & return & "eMam" & return & "test"

	open theMessage -- for further editing
	
end tell

here is what I get
emam test

why is RETURN not working
thanks

What happens if you run a script that has only that line in it? Do you get returns then?

Also, what happens if you substitute linefeed for return, eg:

set theContent to linefeed & linefeed & linefeed & "eMam" & linefeed & "test"

Does that work when inside the outlook tell block?

Finally, what about if you manually type the enter/return key, eg

set theContent to "


eMam
test"