--- title: Date format id: 59669d08d75b60482359409f challengeType: 5 videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert(typeof getDateFormats === "function", "getDateFormats is a function.");' - text: '' testString: 'assert(typeof getDateFormats() === "object", "Should return an object.");' - text: '' testString: 'assert(getDateFormats().length === 2, "Should returned an array with 2 elements.");' - text: '' testString: 'assert.deepEqual(getDateFormats(), dates, equalsMessage);' ```
## Challenge Seed
```js function getDateFormats () { // Good luck! return true; } ```
### After Test
```js console.info('after the test'); ```
## Solution
```js // solution required ```