Word Blanks helping me out

Tell us what’s happening:

help me out withe the blanks mat lib on freecodecamp

Your code so far


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

  // Your code above this line
  return result;
}

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

Your browser information:

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

Link to the challenge:

So have you ever played MadLibs? The game with a booklet of blank spaces, and they randomly get filled in?

The _______ ________ couldn't _______ ________ enough!
      adj.    noun             verb    adverb

Each space gets a word – so the blanks (in my case) are indicated by the part of speech below. In your case, they’re trying to see if you can build a string, mixing both literal text ("something like this") with variables (myNounormyVerb`).

thanks very much sir