Escape Sequences in Strings whar wrong

Tell us what’s happening:

Your code so far


var myStr = “FirstLine\n\t\\SecondLine\nThirdLine”; // Change this line


Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36.

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

What kind of double quotes have you used. By the look of it they don’t seems the standard double quotes ".

I know it sounds trivial but once read by the compiler " and may not be treated the same way.

“”
// vs
""

Besides this, the text itself seems correct.