Doubles quotes inside string not working

Tell us what’s happening:
The following code is not working.

Your code so far
myStr = “I am a “double quoted” string inside “double quotes”.”;


var myStr = ""; 

// Change this line
myStr = "I am a \"double quoted\" string inside \"double quotes\".";

Your browser information:

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

Challenge: Escaping Literal Quotes in Strings

Link to the challenge:

try actually changing the line, and not assigning the string on a new line

This worked…not sure why it didn’t work when assigning string on a new line.

because it is checking what you have written, and it expects to see the indicated line changed