{
function pbjMakers(breadType, JellyType, PeanutAllergy) {
if (PeanutAllergy === true) {
return "Why don't we make you something else?";
}
else {
return (
"Here is your peanut butter and " +
JellyType +
" jelly sandwich on " +
breadType +
" bread."
);
}
}
return pbjMakers("Rye", "Rasberry", "true");
}