Freecodecamp Website Lesson Not Running a Test Result

I am working on the homework for this week, and when running a test on a question, the site will not run the test. Something is wrong. Help, please.

Link is below:

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

You may have a syntax error in the code. Can you provide your code ?

var myStr = \ I am a “double quoted” string inside “double quotes”.";
Also, even when I click the ‘Get a Hint’ button, nothing happens.

Yeah, that doesn’t look correct. You want to have some kind of quotes around the whole string, either double or single.
Also review the lesson, because you need to escape the inside quotes to make this string valid.

Hi, I’ve read the lesson again, is this correct?

var myStr = "I am a \"double quoted" string inside "double quotes\".";

use the backslash to escape double quotes in the string. i-e

var myStr = "I am a \"double quoted\" string inside \"double quotes\"";

Anything inside double quotes is considered a string. So when we want double quotes to be part of the string, we use backslash\ which tells the parser that particular quote is not part of code