Splits a string of space-delimited words into a list of strings. Similar to Python's .split() method for Strings. For example, passing "Hello there everyone" will create a list named "tokens" with the contents "Hello", "there", and "everyone".