--- id: 5d792535a4f1cbff7a8b9a0b title: Part 49 challengeType: 0 isHidden: true --- ## Description
Make `charRange` return `range(start, end)`.
## Instructions
## Tests
```yml tests: - text: See description above for instructions. testString: assert(JSON.stringify(charRange(1,5)) === "[1,2,3,4,5]"); ```
## Challenge Seed
```html ```
### Before Test
```html Spreadsheet
```
### After Test
```html ```
## Solution
```html ```