We have provided a framework for testing your results with different words. The tests will run your function with several different inputs to make sure all of the provided words appear in the output, as well as your extra strings.
* Change the code below `//Your Code here` and up to `//Change this line`.
* Take note that you are editing the inside of the `wordBlanks()` function.
* You will have basically created a sentence with the provided string variables.
*<ahref='http://www.freecodecamp.com/challenges/constructing-strings-with-variables'target='_blank'rel='nofollow'>Challenge: Constructing Strings with Variables</a>
*<ahref='http://www.freecodecamp.com/challenges/concatenating-strings-with-plus-operator'target='_blank'rel='nofollow'>Challenge: Concatenating Strings with Plus Operator</a>
*<ahref='http://www.freecodecamp.com/challenges/concatenating-strings-with-the-plus-equals-operator'target='_blank'rel='nofollow'>Challenge: Concatenating Strings with the Plus Equals Operator</a>
* Test `wordBlanks("dog", "big", "ran", "quickly");` runs.
* Variable **result** is declared with an empty string `""`.
***result** will be changed with a new string composed of the concatenated strings "dog", "big", "ran", "quickly" through the variables **myNoun**, **myAdjective**, **myVerb**, **myAdverb** respectively; the order is changed and whitespace added.