Escaping Literal Quotes in Strings no runnig

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 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36.

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

No space between a and \"

Thanks but still not working.

There are more errors: you’ve removed spaces where there should be spaces and added one where there shouldn’t be ones. Look at what you’re supposed to be putting into a string — you have the correct escaped characters, but try starting again and just escaping the double quotes, don’t remove or add spaces.