Tell us what’s happening:
i think my code is correct but it does not want to pass me i don’t know why, so can you help me please
Your code so far
function wordBlanks(myNoun, myAdjective, myVerb, myAdverb) {
var result = "";
// Your code below this line
result += "the ranning " + myNoun + " is very " + myAdjective + ", and he " + myVerb + "s so " +myAdverb+".";
// Your code above this line
return result;
}
// Change the words here to test your function
wordBlanks("dog", "big", "ran", "quickly");
Your browser information:
Your Browser User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko/20100101 Firefox/58.0
.
Link to the challenge:
https://www.freecodecamp.org/challenges/word-blanks