-
You should not add any new parameters (remove a,b,c,d).
-
You should not reassign the parameter values (remove all assignments inside the function, except
result
to hold the final string). -
All words should be separated by spaces.
"Her " + myAdjective + myNoun
// Her bigdog
vs
"Her " + myAdjective + " " + myNoun
// Her big dog
See if this post helps.