Word Blanks still not working right

Tell us what’s happening:
No matter how I put this in, it is incorrect. What am I doing wrong, please?

Your code so far

function wordBlanks(myNoun, myAdjective, myVerb, myAdverb) {
  var result = "";
  // Your code below this line
  "My " + " myAdjective  " + " myNoun " + "  myVerb " + " myAdverb ".";
  
  // Your code above this line
  return result;
}

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

Your browser information:

Your Browser User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko/20100101 Firefox/59.0.

Link to the challenge:
https://www.freecodecamp.org/challenges/word-blanks

You are not using the argument variables myNoun, myAdjective, etc. Because you have "s around them, you are just using the strings "mAdjective" etc.