--- id: 5d79253a8b29d78984369e4b title: Part 139 challengeType: 0 isBeta: true --- ## Description
The `fill` method takes an argument and replaces all elements of the array with that argument. Use it on the array in `range` to replace everything with `start`.
## Instructions
## Tests
```yml tests: - text: See description above for instructions. testString: assert(code.replace(/\s/g, "").includes("constrange=(start,end)=>Array(end-start+1).fill(start)")); ```
## Challenge Seed
```html ```
### Before Test
```html Spreadsheet
```
### After Test
```html ```
## Solution
```html ```