Pls want on earth am i doing wrong right now

Tell us what’s happening:

Your code so far


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

var wordBlanks = "The" + myAdjective  + " " + myNoun + " " + myVerb + " " + myAdverb + "and bite the old man ." ; // Only change this line;

Your browser information:

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

Challenge: Word Blanks

Link to the challenge:
https://www.freecodecamp.org/learn/javascript-algorithms-and-data-structures/basic-javascript/word-blanks

Hello, alexander.

If you console log your output, you will see the issue:

console.log(wordBlanks); //Add this line at the end

Hope this helps

1 Like

thanks , bless you
:sweat_smile: :sweat_smile: :sweat_smile:

You are missing a couple of spaces in your wordBlanks.