public class Clue {
private final static String[] PEOPLE = {"Tom", "FrostBug", "NormieNurd", "Moldy" };
private final static String[] PLACES = {"Library", "House", "Place", "OtherPlace" };
public static void main(String[] args) {
String person = PEOPLE[(int)(Math.random() * PEOPLE.length)];
String place = PLACES[(int)(Math.random() * PLACES.length)];
System.out.println("Murder at " + place + " by " + person);
}
}
Like that?