If I want to randomly select a letter between a and z, I assume I have to use the Random class:
Random
Random rand = new Random();
Bu
alter version of @Michael Barker
Random r = new Random(); int c = r.nextInt(26) + (byte)'a'; System.out.println((char)c);