Help with string

can someone please tell me what is wrong with my code

Your code so far

const myNoun = “dog”;
const myAdjective = “big”;
const myVerb = “ran”;
const myAdverb = “quickly”;

// Only change code below this line
var wordBlanks = "The " + myAdjective + "black " + myNoun + "that " + myVerb + "away " + myAdverb; // Change this line
// Only change code above this line

Hint: Sentences need spaces between the words. You currently have one large group of consecutive letters.

1 Like

I have been stuck for 3 hours…thank you Sir

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