--- id: 5900f5201000cf542c510032 challengeType: 5 title: 'Problem 435: Polynomials of Fibonacci numbers' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler435(), 252541322550, "euler435() should return 252541322550.");' ```
## Challenge Seed
```js function euler435() { // Good luck! return true; } euler435(); ```
## Solution
```js // solution required ```