Hello...I need some help with word blanks, I can't seem to solve the final step and I don't know what I'm doing wrong

Tell us what’s happening:
Describe your issue in detail here.
I’ve worked my way around solving the first steps this problem but I can’t figure out what am doing wring at this point. I cant seem to solve the last step…I’ve watched the video and it makes sense but still can’t get past this part.
I’ve used the (+=) operator to append all my variables (which I consider as a non-word character)

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 " + " myAjective += 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/102.0.5005.63 Safari/537.36

Challenge: Word Blanks

Link to the challenge:

Take a look at the output:

const wordBlanks = "The " + " myAjective += myNoun += myVerb += myAdverb" + "."; // Change this line
console.log(wordBlanks);

thanks a lot, its so easy to make errors writing code without debugging

1 Like

It takes practice to know what to console.log and where to see what’s up!

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