Tell us what’s happening:
my code isnt working
Your code so far
function wordBlanks(myNoun, myAdjective, myVerb, myAdverb) {
// Your code below this line
myAdjective ="big";
myNoun = "dog";
myVerb = "ran";
myAdverb = "quickly";
var result = '<My +myAdjective+ "lovely" +myNoun+ , +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:63.0) Gecko/20100101 Firefox/63.0
.
Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/word-blanks