I cannot see the mistake, please help me

**Tell us what’s happening: **
I completed the challenge as I believed it to be correct, but I got this error. I cannot see the mistake.

   **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 " + myNoun + " was " + myAdjective + " and "
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/100.0.4896.127 Safari/537.36

Challenge: Word Blanks

Link to the challenge:

You are missing a plus in wordBlanks. Put it between " and " and myVerb

" and " + myVerb

The way the challenge wants you to write the code makes things a little hard to read, so it’s understandable if it was hard to find the issue. Once you learn about ES6 template strings, it’ll get a lot easier to write out strings with a lot of variables :slight_smile:

2 Likes

Thank you,

I spent all day programming HTML and CSS, and I did not see it.

Many thanks :blush:

2 Likes

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