I really can't figure out what's wrong with this. Help

Tell us what’s happening:
Describe your issue in detail here.

Your code so far

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

// Only change code below this line
const wordBlanks = "The" + myAdjective  + " fat " + myNoun + ", jumped and " + myVerb + " really" + myAdverb + "."; // Change this line
// Only change code above this line

Your browser information:

User Agent is: Mozilla/5.0 (Linux; Android 9; MRD-LX1F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Mobile Safari/537.36

Challenge: Word Blanks

Link to the challenge:

You just set the variables and you are not doing nothing with them,
you can add

console.log(wordBlanks);

and you will see the result.

Wow!! It worked. Thanks a lot.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.