Escape Sequences in Strings helps please cant find any error [SOLVED]

Instructions
Assign the following three lines of text into the single variable myStr using escape sequences.

FirstLine
\SecondLine
ThirdLine
You will need to use escape sequences to insert special characters correctly. You will also need to follow the spacing as it looks above, with no spaces between escape sequences or words.

Here is the text with the escape sequences written out.

FirstLinenewlinebackslashSecondLinebackslashcarriage-returnThirdLine

My code:

var myStr = "Firstline\n\\SecondLine\\\rThirdLine";

my error message is :
myStr should have encoded text with the proper escape sequences and no spacing.

I think you have a Typo?

1 Like

The L in ā€œFirstLineā€ needs to be capitalized.

1 Like

thanksļ¼ it was the ā€œFirstLineā€ I forgot to make it to L.

Yea. thanks so much !!