--- id: 5900f46e1000cf542c50ff81 challengeType: 5 title: 'Problem 258: A lagged Fibonacci sequence' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler258(), 12747994, "euler258() should return 12747994.");' ```
## Challenge Seed
```js function euler258() { // Good luck! return true; } euler258(); ```
## Solution
```js // solution required ```