--- id: 5d792534cf81365cfca58794 title: Part 34 challengeType: 0 dashedName: part-34 --- # --description-- Apply `toNumberList(args)` to `spreadsheetFunctions[fn.toLowerCase()]`. # --hints-- See description above for instructions. ```js assert( code .replace(/\s/g, '') .includes( 'consttoNumberList=args=>args.split(",").map(parseFloat);constapplyFunction=(fn,args)=>spreadsheetFunctions[fn.toLowerCase()](toNumberList(args))' ) ); ``` # --seed-- ## --before-user-code-- ```html