function wordBlanks(myNoun, myAdjective, myVerb, myAdverb) {
// Your code below this line
var result = "myNoun" + "myAdjective" + "myVerb" + "myAdverb";
// Your code above this line
return result;
}
// Change the words here to test your function
wordBlanks("dog is" , "big guy" , "ran very" , "quickly got");
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36.