Solving wordblanks on javascript

Tell us what’s happening:

its confusing im stuck help!!

Your code so far


var myNoun = "dog";
var myAdjective = "big";
var myVerb = "ran";
var myAdverb = "quickly";
a="dog";
b="big";
c="ran";
d="quickly";

// Only change code below this line
var wordBlanks = "The " + myAdjective + " red" + myNoun + "and it " + myVerb + "really " + myAdverb + "."; // Only change this line;
// Only change code above this line

Your browser information:

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

Challenge: Word Blanks

Link to the challenge:

You will also need to account for spaces in your string, so that the final sentence has spaces between all the words.

Currently you have:
The big reddogand it ranreally quickly.

i corrected that and still not working
var wordBlanks = “the”+ myAdjective + myNoun + myVerb + myAdverb + “.” ;

Tell us what’s happening:

Your code so far


var myNoun = "dog";
var myAdjective = "big";
var myVerb = "ran";
var myAdverb = "quickly";
a="dog";
b="big";
c="ran";
d="quickly";

// Only change code below this line
var wordBlanks = " The" + myAdjective + " " + myNoun + " " + myVerb + " " + myAdverb + "."; // Only change this line;
// Only change code above this line

Your browser information:

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

Challenge: Word Blanks

Link to the challenge:

Add console.log(wordBlanks) to see what you get.

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 + “.”; // Only change this line;

every thing is correct except this one

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 + “” + “.”; // Only change this line;
// Only change code above this line
console.log(wordBlanks);

this worked i was stuck on it