How to concatenate fields on different lines

I have three variables: strField1, strField2, and strField3. All are text. I need to concatenate them together so that each one is on its own line:

strField1
strField2
strField3

Is there a new line character in wix that I can concatenate between each field? Something like:

strField1 + + strField2 + + strField3

Thank you

I found the answer: Yes, there is. It’s “\n”

Nice. There’s also
in HTML that will work.