--- title: 100 doors id: 594810f028c0303b75339acb challengeType: 5 videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert(typeof getFinalOpenedDoors === "function", "getFinalOpenedDoors is a function.");' - text: '' testString: 'assert(Array.isArray(getFinalOpenedDoors(100)), "getFinalOpenedDoors should return an array.");' - text: '' testString: 'assert.deepEqual(getFinalOpenedDoors(100), solution, "getFinalOpenedDoors did not produce the correct results.");' ```
## Challenge Seed
```js function getFinalOpenedDoors (numDoors) { // Good luck! } ```
### After Test
```js console.info('after the test'); ```
## Solution
```js // solution required ```