--- id: 5d7925342415527083bd6667 title: Part 30 challengeType: 0 isHidden: true --- ## Description
The `split` method returns an array of strings from a larger string by using its argument to determine where to make each split: ```js "a b c".split(" "); // ["a", "b", "c"]; ``` Add a function `toNumberList` (inside `applyFn`) which takes an argument `args` and splits it by commas. Return `toNumberList`.
## Instructions
## Tests
```yml tests: - text: See description above for instructions. testString: assert(JSON.stringify(applyFn("")("foo,baz,bar")) === '["foo","baz","bar"]'); ```
## Challenge Seed
```html ```
### Before Test
```html Spreadsheet
```
### After Test
```html ```
## Solution
```html ```