--- id: 5d7925383f122a279f4c54ad title: Part 109 challengeType: 0 isBeta: true --- ## Description
The `find` method returns the first element of an array that satisfies the function passed to it. Chain `find` onto `cells` and pass it `cell => cell === id`.
## Instructions
## Tests
```yml tests: - text: See description above for instructions. testString: assert(/constidToText=\(?id\)?=>cells\.find\(\(?cell\)?=>cell===id\)/.test(code.replace(/\s/g, ""))); ```
## Challenge Seed
```html ```
### Before Test
```html Spreadsheet
```
### After Test
```html ```
## Solution
```html ```