--- id: 5900f45c1000cf542c50ff6e challengeType: 5 title: 'Problem 239: Twenty-two Foolish Primes' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler239(), 0.001887854841, "euler239() should return 0.001887854841.");' ```
## Challenge Seed
```js function euler239() { // Good luck! return true; } euler239(); ```
## Solution
```js // solution required ```