Word Blanks Challenge - functions?

  1. At the top is the function declaration:

    function wordBlanks(...

  2. Inside the ( parens ) are one or more “arguments” - variables passed into the function:

    function wordBlanks(myNoun, myAdjective, myVerb, myAdverb) {...

  3. Declaring a function does not execute it; it has to be called:

    wordBlanks("dog", "big", "ran", "quickly");

    That executes wordBlanks, passing four arguments to it.

FYI: paste code in between triple back-ticks. See here for more: