What method converts a string into an array of substrings, using space as a separator?
const str = "hello world";
str.divide(' ')
str.break(' ')
str.partition(' ')
str.split(' ')