Need new line in message for dialog

I need to know how to make a new line in my dialog. The sample code is in VB.

dlg.message = "More complex dialog message." & vbCrLf & "Enter some text and select your options."

How can I do the same thing in Jscript?

(example code came from https://www.gpsoft.com.au/help/opus12/index.html#!Documents/Scripting/simpledialogsandpopupmenus.htm)

In JScript, use either \n or \r\n in a string to add a new line.

Oof, I tried /r/n and didn't realize I had the slashes backwards.