--- id: 5d792539239148965a1a59a5 title: Part 134 challengeType: 0 --- ## Description
Now add `median` to `spreadsheetFunctions`, just like you added `sum` and `average`.
## Instructions
## Tests
```yml tests: - text: See description above for instructions. testString: assert(spreadsheetFunctions.median([1, 20, 3]) === 3 && spreadsheetFunctions.median([27, 7, 20, 10]) === 15); ```
## Challenge Seed
```html ```
### Before Test
```html Spreadsheet
```
### After Test
```html ```
## Solution
```html ```