Word Blanks- why is my solution not working?

Tell us what’s happening:

Well the post says the solution is:
result+= “My “+myAdjective+” “+myNoun+” “+myVerb+” very “+myAdverb+”.”;

I do not understand why my solution is not passing the test:
result += “I “+myVerb+” with the " +myAdjective+” goofy “+myNoun+ " very “+myAdverb+”.”;

Your code so far


function wordBlanks(myNoun, myAdjective, myVerb, myAdverb) {
  // Your code below this line
  var result = "";
  
  result += "I "+myVerb+"with the" +myAdjective+" goofy "+myNoun+ "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 (Macintosh; Intel Mac OS X 10_11_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36.

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

nevermind, got it! just had to add spaces.

Requesting document with coding exercise / answer, problem-resolution, “Basic JavaScript: Word Blanks”. Please help me answer this problem.

33%20PM 02%20PM

I am using string below and I keep getting ERROR. What am I doing wrong?

var result += "I “ran”, with the “big”, goofy , “dog”, very “quickly”;