Escaping literal quotes in string topic

Please help me with the Escaping literal quotes in string topic,this is my code so far…what am i doing wrong

*var myStr = “i am a “double quoted” string inside “double quotes”.”;


var 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/68.0.3440.106 Safari/537.36.

Challenge: Escaping Literal Quotes in Strings

Link to the challenge:

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

It appears to pass the test for me, I think it might be because I is small and not capital in your code, I know it appears silly, but freecodecamp has stuff like this often, not the first time for this.