Basic JavaScript - Word Blanks

Tell us what’s happening:
Describe your issue in detail here.
I have no idea what im doing wrong. Maybe my spaces again. please help. I tried others examples too , they didnt work everything checks off except the last one . It says i’m not using all the myNoun myVerb.

Your code so far

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

// Only change code below this line
const wordBlanks ="My" +myAdjective+ "handsome" +myNoun+ "than" +myVerb+ "very" +myAdverb;
// Only change code above this line

Your browser information:

User Agent is: Mozilla/5.0 (X11; CrOS x86_64 14816.131.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36

Challenge: Basic JavaScript - Word Blanks

Link to the challenge:

Yea, I don’t see a single space in your string. Spaces have to be within quotations.

so i did have spaces, but in the wrong places . Not in the " quotes" like you said, thanks that did it. They confuse you by saying an error like i didnt use all the words , but i did. thanks again

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