I need the assistance of the brilliant people here yet again

Tell us what’s happening:

Your code so far


var myStr='"FirstLine
\t\\SecondLine
\ThirdLine"'; 

Your browser information:

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

Challenge: Escape Sequences in Strings

Link to the challenge:

a thing is that you can’t write a multiline string - but you can use thr new line character as per the table

an other thing, the string does not contain quotes, so you need only the quotes that mark it as a string, not also quotes inside the string

Thanks! I removed the double quotes inside it.