i remember the literal but at the same time drawing a blank. i have never been particularly good at grammar so this is confusing
Your code so far
function wordBlanks(myNoun, myAdjective, myVerb, myAdverb) {
// Your code below this line
var result = "";
result+= "my name"+""+myNoun+"i am"+""+myAdjective+"i am a"+""+myVerb+"i am very"+""+myAdverb;
// Your code above this line
return result;
}
// Change the words here to test your function
wordBlanks("dog", "big", "ran", "quickly","fastly");
wordblanks("cat", "little", "hit", "slowly")
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:68.0) Gecko/20100101 Firefox/68.0.
function wordBlanks(myNoun, myAdjective, myVerb, myAdverb) {
// Your code below this line
var result = "";
result = "Your " + myNoun + " "+ myAdjective + " " + myVerb + " " + myAdverb;
// Your code above this line
return result;
}
// Change the words here to test your function
wordBlanks("dog", "big", "ran", "quickly");
irony is i forgot about the simplest thing concatention and just wasnt thinking of how to put this together. the code above is whati managed to come up with and it went thru. lol. tyvm for the help.