function wordBlanks(myNoun, myAdjective, myVerb, myAdverb) {
// Your code below this line
var result = "The dog was" + "big" + ", and ran" + "very quickly.";
return result;
}
wordBlanks(“dog”, “big”, “ran”, “quickly”);
wordBlanks(“cat”, “little”, “hit”, “slowly”)
1 Like
Please link the question too…
Instead of hardcoding words like big etc you need to learn how to use the parameters given. Please reread the instructions.
You will need to use the string concatenation operator + to build a new string, using the provided variables: myNoun, myAdjective, myVerb, and myAdverb. You will then assign the formed string to the result variable.
Hello, please check out this video to help you out. Have a great day 
its helpful thank you so much. have a good day:slightly_smiling_face: