pls some1 should help me with this… im stuckl here pls
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 "+ mynoun "is "+ myAdjective + " I "+ myVerb + " inside the aous 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/104.0.0.0 Safari/537.36
Challenge: Basic JavaScript - Word Blanks
Link to the challenge:
You need to have a +
operator between every single string or variable name. Right now you don’t.
"my "+ mynoun "is "+ myAdjective + … check the code again, i got them on it
const myNoun = “dog”;
const myAdjective = “big”;
const myVerb = “ran”;
const myAdverb = “quickly”;
// Only change code below this line
const wordBlanks = "my "+ myNoun + "is "+ myAdjective + "so I "+ myVerb + "so "+ myAdverb; // Change this line
// Only change code above this line
this is my new code
Go ahead and add this line to the very end of your editor. It will show you what the value of your wordBlanks
variable is.
console.log(wordBlanks);
You should see the following output on the console below the editor.
my dogis bigso I ranso quickly
As you can see, you need to add spaces between some of your words.