Basic JavaScript course: Word Blanks, mad libs style fill in the blanks

  1. You should not add any new parameters (remove a,b,c,d).

  2. You should not reassign the parameter values (remove all assignments inside the function, except result to hold the final string).

  3. All words should be separated by spaces.

"Her " + myAdjective + myNoun
// Her bigdog

vs

"Her " + myAdjective + " " + myNoun
// Her big dog

See if this post helps.