--- id: 5d7925335ab63018dcec11fe title: Part 19 challengeType: 0 dashedName: part-19 --- # --description-- Arrow functions can have multiple statements: ```js const fn = (x, y) => { const result = x + y; return result; // explicit return statement required }; ``` Use this syntax for the `highPrecedence` function. # --hints-- See description above for instructions. ```js assert(code.replace(/\s/g, '').includes('highPrecedence=str=>{returnstr')); ``` # --seed-- ## --before-user-code-- ```html Spreadsheet
``` ## --after-user-code-- ```html ``` ## --seed-contents-- ```html ``` # --solutions-- ```html ```