Word Blanks, why is this wrong?

Tell us what’s happening:
Why is this incorrect

Your code so far


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

// Only change code below this line
var wordBlanks = "I saw a " + myNoun + ",it " + myVerb + ",and it was" + myAdjective + " and I walked very" + myAdverb + "."; // Change this line
// Only change code above this line

Your browser information:

User Agent is: Mozilla/5.0 (X11; CrOS x86_64 13310.93.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.133 Safari/537.36.

Challenge: Word Blanks

Link to the challenge:

Welcome, kexincx.

I suggest you add this line to the bottom of the script, and see if the output looks quite correct:

console.log(wordBlanks);

Hope this helps

oh i saw my mistakes, thanks a lot!