/* A student was working on a function and made some syntax mistakes while coding. Help them find their mistakes and fix them. */ function main(verb, noun) { verb = verb ? verb.trim() : verb; noun = noun ? noun.trim() : noun; return verb + ' ' + noun; }