---
id: 5d7925342415527083bd6667
title: Step 030
challengeType: 0
isBeta: 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
### After Test
```html
```
## Solution