Tell us what’s happening:
I read through the forum and found similar questions. I have changed my code to the one as at the fcc guide but it is still not working and I don’t understand why? Can anybody please help me?
Your code so far
function wordBlanks(myNoun, myAdjective, myVerb, myAdverb) {
// Your code below this line
var result= " ";
result += "My " +myAdjective+" "+myNoun+" "+myVerb + " very " +myAdverb".";
// 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 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36
.
Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/word-blanks