'Creating new lines on an automized message on AppleScript

I am trying to create a new line in a message in my apple script code. But it keeps saying I can't add return after return. What I keep getting this what I need

my current code is

set myReply to "Sure. I will start doing that now." & return & "Hope everything is well." & return & "Thanks," & return & "-Diego"


Solution 1:[1]

I'm not sure you need to concatenate the return character. Try:

set myReply to "Sure Dora, I will start doing that now.
Hope everything is well

Thanks,
-Diego"

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 user3579815