How to split the input string into an array of string?
The substring will be less than or equal a constant length (ex:10 characters in total.)
The substring will only be split on white space.
Ex: The quick brown fox jumps over the lazy dog Should split into array of
["The quick","brown fox","jumps over","the lazy", "dog"]
=> Each item in array less than or equal 10 chars and separated by white space.