--- id: 5900f3fa1000cf542c50ff0c challengeType: 5 title: 'Problem 140: Modified Fibonacci golden nuggets' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler140(), 5673835352990, "euler140() should return 5673835352990.");' ```
## Challenge Seed
```js function euler140() { // Good luck! return true; } euler140(); ```
## Solution
```js // solution required ```