Word Blanks I Can´t get the solution Help

Tell us what’s happening: whats wrong???

function wordBlanks(myNoun, myAdjective, myVerb, myAdverb) {
var result = “”
// Your code below this line
result += “My” + myAdjective + myNoun + “” + myVerb + “very” + myAdverb +,“and it hit a little cat slowly.”;

// Your code above this line
return result;
}

// Change the words here to test your function
wordBlanks(“dog”, “big”, “ran”, “quickly”);
Your code so far


function wordBlanks(myNoun, myAdjective, myVerb, myAdverb) {
    var result = ""
  // Your code below this line
result += "My" + myAdjective + myNoun + "" + myVerb + "very" + myAdverb +,"and it hit a little cat slowly.";

  // Your code above this line
  return result;
}

// Change the words here to test your function
wordBlanks("dog", "big", "ran", "quickly");

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36.

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

First, there is an extra comma here: myAdverb +,"and it

EDIT: You forgot to add a semicolon here:
var result = “”

EDIT2: Try to add spaces or words between your variables. At this time, the result of your code is:

Mybigdog,ranveryquicklyand it hit a little cat slowly.

Try to modify the code to do this:

My big dog ran very quickly and it hit a little cat slowly.

Have a nice day! :slight_smile:

Thanks, I’ve tried several times and finally I don’t know how I resolved the problem.
Could you put me another example for the same question?

Thanks in advence

I edited my last message with more informations! Word Blanks I Can´t get the solution Help
Have you got others questions?

result+= “My “+myAdjective+” “+myNoun+” “+myVerb+” very “+myAdverb+”.”

But i think I did it before and now it´s correct. wierd

Remember to add a semicolon at the end of your statements :wink: