Confused need help with the escape quote

Tell us what’s happening:

Your code so far


var myStr = ""; // Change this line

Your browser information:

User Agent is: Mozilla/5.0 (X11; CrOS x86_64 12871.102.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.141 Safari/537.36.

Challenge: Escaping Literal Quotes in Strings

Link to the challenge:

Tell us what’s happening:

Your code so far


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

Your browser information:

User Agent is: Mozilla/5.0 (X11; CrOS x86_64 12871.102.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.141 Safari/537.36.

Challenge: Escaping Literal Quotes in Strings

Link to the challenge:

Hi,

maybe you have to enter the given string in the quotes!

You still need double quotes " around the entire string. Once you fix that, make sure that for the double quotes that you are escaping, you put the escape character first \" like you did with the opening quotes.

And take into account that you have to use " in the inner sentence!

Sorry!
And take into account that you have to use “backslash” before every * in the inner sentence!