ArrayList<String> wordArrayList = new ArrayList<String>(); for(String word : "Hello I like Sports".split(" ")) { wordArrayList.add(word); }