Basically I wrote out the code but I don't know how to write it in reverse. Question asks: Write a method that accepts a String and tokenizes it. put each word into an array and print the array in reverse.
Here's the code
public void tokens(String s)
{
String tokenArray[] = s.split("X");
for (String s:tokenArray)
System.out.println(s);
} (don't have to do number 8)