--- id: 5900f3a81000cf542c50febb challengeType: 5 title: 'Problem 60: Prime pair sets' videoUrl: '' localeTitle: 'Problema 60: Conjuntos Prime Pair' --- ## Description undefined ## Instructions
## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler60(), 26033, "euler60() should return 26033.");' ```
## Challenge Seed
```js function euler60() { // Good luck! return true; } euler60(); ```
## Solution
```js // solution required ```