Basic JavaScript - Word Blanks

Tell us what’s happening:
I don’t see whats wrong, even watched and did it like in the video and I can’t get the issue.

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 + "" + myNoun + "" + 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/114.0.0.0 Safari/537.36

Challenge: Basic JavaScript - Word Blanks

Link to the challenge:

Hi there and welcome to our community!

Try adding console.log(wordBlanks) at the bottom of your code, so you can see in the console what the value of that variable is. That should show you what’s going wrong.

1 Like

Thank you lots it helped and I noticed my mistake.