--- id: 5d792539239148965a1a59a5 title: Part 134 challengeType: 0 dashedName: part-134 --- # --description-- Now add `median` to `spreadsheetFunctions`, just like you added `sum` and `average`. # --hints-- See description above for instructions. ```js assert( spreadsheetFunctions.median([1, 20, 3]) === 3 && spreadsheetFunctions.median([27, 7, 20, 10]) === 15 ); ``` # --seed-- ## --before-user-code-- ```html Spreadsheet
``` ## --after-user-code-- ```html ``` ## --seed-contents-- ```html ``` # --solutions-- ```html ```