--- id: 5900f39a1000cf542c50fead challengeType: 5 title: 'Problem 46: Goldbach"s other conjecture' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(goldbachsOtherConjecture(), 5777, "goldbachsOtherConjecture() should return 5777.");' ```
## Challenge Seed
```js function goldbachsOtherConjecture() { // Good luck! return true; } goldbachsOtherConjecture(); ```
## Solution
```js // solution required ```