Escape Sequences in Strings Error

Tell us what’s happening:
SyntaxError: unknown: Unexpected token, expected “;” (1:9)

1 | var myStr"FirstLine\n\t\SecondLine\nThirdLine"; // Change this line
| ^
2 |

Your code so far


var myStr"FirstLine
\t\\SecondLine
ThirdLine"; // Change this line

Your browser information:

User Agent is: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:78.0) Gecko/20100101 Firefox/78.0.

Challenge: Escape Sequences in Strings

Link to the challenge:

You need make sure and use the assignment operator that you learned several challenges back. myStr needs to be assigned the string.

yah THANKS I noticed it just after posting !
Well m new. Learning !
Thanks