我的代码:
function wordBlanks(myNoun, myAdjective, myVerb, myAdverb) {
// Your code below this line
var 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");
console.log(result) 显示:result is not defined
don’t know why…