This should work. If i put this in a code editor it would work. I think its you not me.
Your code so far
function wordBlanks(myNoun, myAdjective, myVerb, myAdverb) {
// Your code below this line
var result = "my" + myNoun + "is " + myAdjective + "very " + myVerb + " cool and " + myAdverb;
// Your code above this line
return result;
}
// Change the words here to test your function
wordBlanks("yo", "what", "up", "dog");
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Safari/537.36
.
Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/word-blanks