Embraz
1
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:
ILM
2
you should be getting a syntax error, look carefully what the syntax error is pojnting at
Embraz
3
It says “missing semicolon” but i cant find any missing semicolon
ILM
4
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
Embraz
5
There’s nothing i can find missing. Been staring at the code for over an hour. I need help!!
ILM
6
And I am trying to give it to you
The error points here, see the arrow?

And you are missing a thing, which is not a semicolon but still a thing you must have
Embraz
7
Thanks a bunch. Just saw what i missed. A + operator.
I’m immensely grateful. Kind regards!!!
system
Closed
8
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.