--- id: 5900f3a61000cf542c50feb9 challengeType: 5 title: 'Problem 58: Spiral primes' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler58(), 26241, "euler58() should return 26241.");' ```
## Challenge Seed
```js function euler58() { // Good luck! return true; } euler58(); ```
## Solution
```js // solution required ```