Basic JavaScript - Word Blanks

Please I am stuck. I really dont know what i did wrong. Any help will be well appreciated. Thanks in anticipation.

Your code so far

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

// Only change code below this line
var wordBlanks = "The " + myAdjective + " " + myNoun + " " + myVerb + " " + myAdverb "."; // Change this line

console.log(wordBlanks);
// Only change code above this line

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36

Challenge: Basic JavaScript - Word Blanks

Link to the challenge:

you should be getting a syntax error, look carefully what the syntax error is pojnting at

It says “missing semicolon” but i cant find any missing semicolon

look at the place in the code it is pointing at, it is pointing at a specific point. didn’t you forget to add something there?

even if it says missing semicolon it may not be what makes sense for your code in that place

There’s nothing i can find missing. Been staring at the code for over an hour. I need help!!

And I am trying to give it to you

The error points here, see the arrow?
image

And you are missing a thing, which is not a semicolon but still a thing you must have

Thanks a bunch. Just saw what i missed. A + operator.

I’m immensely grateful. Kind regards!!!

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