How to concatenate two variables and achieve a line break in the middle?

Text variable = variable 1 + “/n” + variable 2
At this time, /n will be displayed directly as text. If it is changed to \n, an error message will be displayed and the program will fail. So how can the text variable connect the two variables and achieve the effect of line break in the middle?

Text = Var1+NewLine()+Var2

Text = 1
2

Where i personally do this in text object

Text = Var1+"HERE Hold Shift and press ENTER to make new line
"+Var2

So 

Text = Var1+"
"+Var2

Text = 1
2

Hi all!

Chr(13) = RETURN (go to the beginning of next line)
and Chr(10) = skip a line but don’t change the horizontal pos of the line)

Ex:
Myvariable + chr(13)

A+
Xierra