--- id: 5d79253a1e9abf29de64c177 title: Part 138 challengeType: 0 isBeta: true --- ## Description
The `Array` function takes an argument `x` and creates an array of size `x` filled with `undefined`. Make `range` return an array of `undefined` with size `end - start + 1`.
## Instructions
## Tests
```yml tests: - text: See description above for instructions. testString: assert(code.replace(/\s/g, "").includes("constrange=(start,end)=>Array(end-start+1)")); ```
## Challenge Seed
```html ```
### Before Test
```html Spreadsheet
```
### After Test
```html ```
## Solution
```html ```