Escape Sequences in Strings '19

Tell us what’s happening:

Hi All, I’m following the challenge to a tee and I’m still receiving errors, I don’t understand where I’m going wrong. Can anyone point me in the right direction?

Your code so far


var myStr; "FirstLine\n\t\\SecondLine\nThirdLine";


Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.13; rv:68.0) Gecko/20100101 Firefox/68.0.

Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/escape-sequences-in-strings

you have an undefined variable, and a string

maybe you wanted to assign the string to the variable?

Wow, something so simple. Thank you for giving me the bump on the head I needed!