--- title: ABC Problem id: 594810f028c0303b75339acc challengeType: 5 videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert(typeof canMakeWord === "function", "canMakeWord is a function.");' - text: '' testString: 'assert(typeof canMakeWord("hi") === "boolean", "canMakeWord should return a boolean.");' - text: '' testString: 'assert(canMakeWord(words[0]), "canMakeWord("bark") should return true.");' - text: '' testString: 'assert(!canMakeWord(words[1]), "canMakeWord("BooK") should return false.");' - text: '' testString: 'assert(canMakeWord(words[2]), "canMakeWord("TReAT") should return true.");' - text: '' testString: 'assert(!canMakeWord(words[3]), "canMakeWord("COMMON") should return false.");' - text: '' testString: 'assert(canMakeWord(words[4]), "canMakeWord("squAD") should return true.");' - text: '' testString: 'assert(canMakeWord(words[5]), "canMakeWord("conFUSE") should return true.");' ```
## Challenge Seed
```js function canMakeWord (word) { // Good luck! } ```
### After Test
```js console.info('after the test'); ```
## Solution
```js // solution required ```