Tell us what’s happening:
I have gone through this problem several times, and I have no idea how to solve it. I have done exactly as the directions say I should.
Your code so far
function wordBlanks(myNoun, myAdjective, myVerb, myAdverb) {
var result="";
// Your code below this line
var result += "His" + myAdjective + "tabby" + myNoun + "jumped and" + myVerb + "the floor" + myAdverb;
// Your code above this line
return result;
}
// Change the words here to test your function
wordBlanks("cat", "little", "hit", "slowly");
Your browser information:
User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.2 Safari/605.1.15
.
Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/word-blanks/