Basic JavaScript - Word Blanks

Tell us what’s happening:
I am trying to string “My big dog ran away quickly”

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 "" + myNoun "" + myVerb "" + "away " + 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; rv:107.0) Gecko/20100101 Firefox/107.0

Challenge: Basic JavaScript - Word Blanks

Link to the challenge:

you are missing a + between myAdjective and the space

double check that you have all the spaces you need and all the + operators you need

You missing away in string

After you add in the necessary + operators, you should add the following line to see what your output looks like:

console.log(wordBlanks);

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