Tell us what’s happening:
Describe your issue in detail here.
I dont why its not working, Anyone please help me to passed out this challenge
Your code so far
var myNoun = "dog";
var myAdjective = "big";
var myVerb = "ran";
var myAdverb = "quickly";
// Only change code below this line
var wordBlanks = "The " + myAdjective + myNoun + myVerb + myAdverb + ".";
Your browser information:
User Agent is: Mozilla/5.0 (X11; Linux x86_64; rv:68.9) Gecko/20100101 Goanna/4.6 Firefox/68.9 PaleMoon/28.13.0
From the instructions: You will also need to account for spaces in your string, so that the final sentence has spaces between all the words. The result should be a complete sentence.
Taking a look at what wordBlanks is after this operation will be helpful in figuring out what is wrong. You can add console.log(wordBlanks); at the end, to print it to the console.