Tell us what’s happening:
Describe your issue in detail here.
Your code so far
First of all, I don’t know what code is correct. The example from the challenge sample looks like the code you see to the right. the example in the video looks like "That + " " +myNoun+ " " +myAdjective+ " " +myNoun+ " " +myVerb+ " " +myAdverb+ " “.”; Neither way works and i believe the {That} is the source of the problem but i don’t know why.
const myNoun = "dog";
const myAdjective = "big";
const myVerb = "ran";
const myAdverb = "quickly";
// Only change code below this line
const wordBlanks = "That " + "myAdjective" + "myNoun" + "myVerb" + "myAdverb" + "."; // Change this line
// Only change code above this line
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36 Edg/107.0.1418.56
Challenge: Basic JavaScript - Word Blanks
Link to the challenge: