Escape Sequences in Strings-2018 version

None of the requirements are passing, except not using spaces, and I am totally lost. I have rewritten it several times to no avail. The directions:

Assign the following three lines of text into the single variable myStr using escape sequences.

FirstLine
\SecondLine
ThirdLine

This is the instruction with it written out:
“FirstLine newline tab backslash SecondLine newline ThirdLine”

Your code so far


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


```Thank you so much,
Shelly

**Your browser information:**

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

**Link to the challenge:**
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/escape-sequences-in-strings
var myStr; "FirstLine\n\t\\SecondLine\nThirdLine"// Change this line

Why do you have a semicolon in the middle of this line? Where is the assignment operator?

Oh, good grief. The semicolon was part of the original code that was written. I completely overlooked that. It’s crazy how your eyes can go over and over something and not see it.
Thank you very much, that solved it.