--- title: Deal cards for FreeCell id: 59694356a6e7011f7f1c5f4e challengeType: 5 videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert(typeof dealFreeCell === "function", "dealFreeCell is a function.");' - text: '' testString: 'assert(typeof dealFreeCell(1) === "object", "dealFreeCell(seed) should return an object.");' - text: '' testString: 'assert(dealFreeCell(1).length === 7, "dealFreeCell(seed) should return an array of length 7.");' - text: '' testString: 'assert.deepEqual(dealFreeCell(1), game1, "dealFreeCell(1) should return an array identical to example "Game #1"");' - text: '' testString: 'assert.deepEqual(dealFreeCell(617), game617, "dealFreeCell(617) should return an array identical to example "Game #617"");' ```
## Challenge Seed
```js function dealFreeCell (seed) { // Good luck! return true; } ```
### After Test
```js console.info('after the test'); ```
## Solution
```js // solution required ```