const myNoun = "dog";
const myAdjective = "big";
const myVerb = "ran";
const myAdverb = "quickly";
// Only change code below this line
const wordBlanks = "The " + myAdjective + "" + myNoun + "" + myVerb + "" + myAdverb + ".";
// Change this line
// Only change code above this line
Can someone please tell me why this sentence doesn’t work? I’ve literally copied the video advice here.