Word Blanks bugged?

**Tell us what’s happening:**Another bugged out exercise on FCC. I don’t even have the second set of words in the playground. Oh well, I guess that’s why it’s FREE code camp. You get what you pay for.

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 (X11; CrOS x86_64 9460.73.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.134 Safari/537.36.

Link to the challenge:

I don’t understand what bug you are talking about. What I see is your solution is wrong. First, your string should be stored in result variable and all parameters should have spaces among them. The right way could be

result = 'My ' + myAdjective + ' ' + myNoun + ' ' + myVerb + ' ' + myAdverb + '.';