Hi! can someone please help me? I don't know what is wrong with that

Tell us what’s happening:
i Tried everything (even the solution in the “give me a hint” section) but it gives me the 4th error, I’m stuck here.

Your code so far


var myNoun = "dog";
var myAdjective = "big";
var myVerb = "ran";
var myAdverb = "quickly";

// Only change code below this line
var wordBlanks =  "the" + myNoun + " " + myAdjective + " " + 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/86.0.4240.183 Safari/537.36.

Challenge: Word Blanks

Link to the challenge:

I suggest you console.log wordBlanks :wink:

console.log(wordBlanks);
1 Like