--- title: Fibonacci word id: 5992e222d397f00d21122931 challengeType: 5 videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert(typeof fibWord === "function", "fibWord is a function.");' - text: '' testString: 'assert(Array.isArray(fibWord(5)),"fibWord(5) should return an array.");' - text: '' testString: 'assert.deepEqual(fibWord(5),ans,"fibWord(5) should return "+JSON.stringify(ans)+".");' ```
## Challenge Seed
```js function fibWord (n) { // Good luck! } ```
### After Test
```js console.info('after the test'); ```
## Solution
```js // solution required ```