I'd like to split a string by a separater. ``` 3.irteusgl$ (split-function " " "1 2 3 4 5") (list "1" "2" "3" "4" "5") ``` Is there any way to split string like this?