--- id: 5d792539e1446045d0df6d28 title: Part 135 challengeType: 0 isHidden: true --- ## Description
The `some` method checks if any element of the array satisfies the provided testing function. Add `someeven` to `spreadsheetFunctions`, which checks if any of the items passed in are even.
## Instructions
## Tests
```yml tests: - text: See description above for instructions. testString: assert(spreadsheetFunctions.someeven([1, 5, 4, 3]) && !spreadsheetFunctions.someeven([3, 5, 9]) && code.includes(".some")); ```
## Challenge Seed
```html ```
### Before Test
```html Spreadsheet
```
### After Test
```html ```
## Solution
```html ```