--- id: 5900f5151000cf542c510028 challengeType: 5 title: 'Problem 425: Prime connection' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler425(), 46479497324, "euler425() should return 46479497324.");' ```
## Challenge Seed
```js function euler425() { // Good luck! return true; } euler425(); ```
## Solution
```js // solution required ```