Basic JavaScript - Word Blanks

Tell us what’s happening:
I tried to post in the original guide but i think replies are closed. This challenge is ike 33% or something.
I do not know what I’m doing wrong. The only error it’s showing is that I’m not using all the words assigned to variables, but I am…?

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 + "smelly " + myNoun + "suddenly " + myVerb + "very " + 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/107.0.0.0 Safari/537.36

Challenge: Basic JavaScript - Word Blanks

Link to the challenge:

you have a spacing problem
You must have a space between each word.

To check where you are missing a space simply add this line of code
console.log(wordBlanks);
after the const wordBlanks... line

2 Likes

THANKYOU! It’s working now

1 Like

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