Word Blanks- change words here "cat" etc fail?

Tell us what’s happening:

Your code so far


function wordBlanks(myNoun, myAdjective, myVerb, myAdverb) {
  // Your code below this line
  var result = "";
myNoun="dog";
myAdjective="big";
myVerb="ran";
myAdverb="quickly";
result+= "My "+myAdjective+" "+myNoun+" "+myVerb+" very "+myAdverb+".";

  // Your code above this line
  return result;
}
// Change the words here to test your function
wordBlanks("cat", "little", "hit", "slowly");

Your browser information:

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

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

Ditch these:

and you’ll pass.

thanks for replying - appreciated. there seems to be two parts - the first part passes the second part fails

function wordBlanks(myNoun, myAdjective, myVerb, myAdverb)
{
// Your code below this line
var result = “”;
myNoun=“dog”;
myAdjective=“big”;
myVerb=“ran”;
myAdverb=“quickly”;
result+= “My “+myAdjective+” “+myNoun+” “+myVerb+” very “+myAdverb+”.”;
// Your code above this line
return result;
}
//passes up to this point

// Change the words here to test your function
wordBlanks("cat ", "little ", "hit ", “slowly”);

//fails on the last line above

Yes change last line, i.e. when you call function. Do not change stuff inside a function.

Thanks for your response - I tried but still fails - attached a screenshot below

1