Word Blanks unusable or I'm dumb ^^

**Hi , I tried several solution but it doesn’t work , i looked for the solution , witch is exactly what I did.
So I think there is only two solutions :
First : There is something that I don’t understand in this function
OR : there is a bug on this section

Thank you for your time if you are reading this**

Your code so far


function wordBlanks(myNoun, myAdjective, myVerb, myAdverb) {
  // Your code below this line
        var result = "";
        result = "My "+ myAdjective +" "+myNoun+" "+ myVerb +" very" + myAdverb "." ;
  // Your code above this line
  return result;
}
// Change the words here to test your function
wordBlanks("dog", "big", "ran", "quickly")
wordBlanks("cat", "little", "hit", "slowly")

Your browser information:

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

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

Um… inspect that carefully. What does JavaScript know what to do when it finds a string after a variable name?

A grammar mistake stops the test from passing too. Which character is missing after “very”?

hi thank for you advice =)
so the character missing is + after myAdverb ( thank )
but I didn’t understand the second part , what cause a stop of the test ?

If myAdverb is "big", this is " verybig"

thx , So i’m dumb …
BUT I’m unlocked ^^
I’ll be more carefull about that thx