If the words are separated by spaces and you split around spaces you'll get an array of words.

E.g. if we have:

String example = "This is an example string. What do you think?";
String[]...