Word Blanks I don't understand what to do with it

Tell us what’s happening:

Your code so far

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

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

Your browser information:

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

Link to the challenge:

You need to be more specific.
Do you mean you don’t understand what is being asked of you?
If that’s what you mean, you just make the function return a sentence (or more than a sentence if you want) that uses all the variables.
for example "the ‘noun’ ate a ‘adjective’ steak and ‘verb’ ‘adverb’ away"
then swap out the blanks with the variables

myNoun will be your noun, (a person place or thing eg “Dog”)
myAdjective will be your adjective (word that describes something, as in “Big dog”)
myVerb is your verb (a word for an action as in “the big dog Ran”)
and myAdverb is your Adverb (a word describing a verb as in “the big dog ran Quickly”)

so you make a template sentence and then use code to fill in the blanks with the variables in their proper places.

Good luck