Escape Sequences in Strings I really cannot see what I else should I have to do

Tell us what’s happening:

Your code so far


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

Your browser information:

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

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

The first problem is here:

var myStr\t

You should not add escaped characters to a variable name.

The second problem is here:

ThirdLine\"

Here you are escaping the quotation mark " which will result in an unterminated string.