Tell us what’s happening:
Help with this Im not understanding the instructions clearly
Your code so far
function wordBlanks(myNoun, myAdjective, myVerb, myAdverb) {
// Your code below this line
var result = 'My' +myNoun+ 'lovely' +myAdjective+ +myVerb+ +myAdverb+ 'after me.'
// 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; rv:64.0) Gecko/20100101 Firefox/64.0
.
Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/word-blanks/