Escaping challenge

Tell us what’s happening:
The code below is not being accepted for some reason.

Your code so far


`var myStr "FirstLine\n\t\\SecondLine\nThirdLine"; // Change this line`

Your browser information:

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

Challenge: Escape Sequences in Strings

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

That should work. It looks like your code is in single quotes though. Remove the quote in the front and add an = so that myStr actually gets assigned to that value.

remove the ` before the var

You forgot to include the assignment operator (=).

Thank you to everyone. I did figure out that I was missing some things from my code.