--- id: a5229172f011153519423690 title: Sum All Odd Fibonacci Numbers isRequired: true challengeType: 5 videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert(typeof sumFibs(1) === "number", "sumFibs(1) should return a number.");' - text: '' testString: 'assert(sumFibs(1000) === 1785, "sumFibs(1000) should return 1785.");' - text: '' testString: 'assert(sumFibs(4000000) === 4613732, "sumFibs(4000000) should return 4613732.");' - text: '' testString: 'assert(sumFibs(4) === 5, "sumFibs(4) should return 5.");' - text: '' testString: 'assert(sumFibs(75024) === 60696, "sumFibs(75024) should return 60696.");' - text: '' testString: 'assert(sumFibs(75025) === 135721, "sumFibs(75025) should return 135721.");' ```
## Challenge Seed
```js function sumFibs(num) { return num; } sumFibs(4); ```
## Solution
```js // solution required ```