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