Basic JavaScript - Word Blanks

Can someone please explain what I am not doing correct here?

Your code so far

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


const wordBlanks = "A" + myAdjective + "bear caused my" + myNoun + "to wimper as he" + myAdverb + "turned and" + myVerb + "away from the bear." ; 

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36

Challenge: Basic JavaScript - Word Blanks

Link to the challenge:

1 Like

I figured it out, I needed to add spaces to the strings.

1 Like