Hi,
I need to create a method which selects a random word from my array list at random...at the moment it prints out what is in the array list...
public class Bank { public static void main(String[] args) { String[] words = {"Garage", "Swindon", "Newspaper", "Chocoloate"}; List<String> wordList = Arrays.asList(words); for (String e : wordList) { System.out.println(e); } }