--- id: 5900f5241000cf542c510036 challengeType: 5 title: 'Problem 437: Fibonacci primitive roots' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler437(), 74204709657207, "euler437() should return 74204709657207.");' ```
## Challenge Seed
```js function euler437() { // Good luck! return true; } euler437(); ```
## Solution
```js // solution required ```