--- title: Comma quibbling id: 596e414344c3b2872167f0fe challengeType: 5 videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert(typeof quibble === "function", "quibble is a function.");' - text: '' testString: 'assert(typeof quibble(["ABC"]) === "string", "quibble(["ABC"]) should return a string.");' - text: '' testString: 'assert.equal(quibble(testCases[0]), results[0], "quibble([]) should return "{}".");' - text: '' testString: 'assert.equal(quibble(testCases[1]), results[1], "quibble(["ABC"]) should return "{ABC}".");' - text: '' testString: 'assert.equal(quibble(testCases[2]), results[2], "quibble(["ABC", "DEF"]) should return "{ABC and DEF}".");' - text: '' testString: 'assert.equal(quibble(testCases[3]), results[3], "quibble(["ABC", "DEF", "G", "H"]) should return "{ABC,DEF,G and H}".");' ```
## Challenge Seed
```js function quibble (words) { // Good luck! return true; } ```
### After Test
```js console.info('after the test'); ```
## Solution
```js // solution required ```