Escaping Literal Quotes in Strings not working

Tell us what’s happening:
it is telling me that i need 2 double quotes(") and 4 escaped Double quotes(") but i have them in my code.

Your code so far


var myStr = "I am a \"double quoted\" string inside \"double quotes\".";
var otherStr = 'I am a \'single quoted\' string inside \"single quotes\'.';
var noEscapeSingle = "There is no need to 'escape' the single quotes.";
var noEscapeDouble = 'here is no need to "escape" the double quotes.';

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

Read the description for the challenge again, it never mentions that you need to create 4 different variables.

Use backslashes to assign a string to the myStr variable so that if you were to print it to the console, you would see:

I am a "double quoted" string inside "double quotes".

There are too many strings in your code,
You need to do only what the challenge asks from you, extras will make the tests not work and you not pass the challenge.