--- id: 5d79253a2febbb77098730b9 title: Part 136 challengeType: 0 isHidden: true --- ## Description
The `every` method checks if all elements of an array satisfy the provided testing function. Use it to add an `everyeven` function to `spreadsheetFunctions` which checks if all values passed in are even`spreadsheetFunctions` which checks if all values passed in are even.
## Instructions
## Tests
```yml tests: - text: See description above for instructions. testString: assert(spreadsheetFunctions.everyeven([2, 6, 4, 0, 20]) && !spreadsheetFunctions.everyeven([10, 0, 9, 2]) && code.includes(".every")); ```
## Challenge Seed
```html ```
### Before Test
```html Spreadsheet
```
### After Test
```html ```
## Solution
```html ```