--- id: 5d792534f0eda837510e9192 title: Part 38 challengeType: 0 dashedName: part-38 --- # --description-- Now use the ternary operator in the last line to return `applyFunction(fn, args)` if the statement is true, and `match` otherwise. # --hints-- See description above for instructions. ```js assert(applyFn('2+2*2') === '6' && applyFn('(2+2)*2') === '4*2'); ``` # --seed-- ## --before-user-code-- ```html