String[] words = new String[] { "animal", "anthony", "bear", "bright",
"cat", "cities", "control", "copper", "country", "degree", "driving",
"electric", "earth", "eggs", "expert", "family", "female", "flying",
"friend", "fuit", "guessing", "german", "gold", "green", "happy",
"harbour", "heart", "history", "horse", "insect", "interest", "internet",
"island", "jelly", "journey", "judge", "kettle", "kiss", "language",
"laugh", "letter", "loud", "machine", "male", "manager", "market",
"married", "measure", "monkey", "noise", "nose", "number", "officer",
"opinion", "other", "orange", "paint", "parcel", "potato", "quick",
"quiet", "reading", "record", "snow", "school", "science", "ship",
"teacher", "thunder", "trousers", "value", "voice", "waiting", "walking",
"woman", "yellow", "zebra"};
// Create a new Scanner Object called scan
Scanner scan = new Scanner(System.in);
// Print out a request and display to the User
// & Read In User Input using the Scanner Object
System.out.println("Enter a common word: ");
scan.nextLine();