Object[] possibilities = { "A:/", "B:/", "C:/" };
String drive = (String) JOptionPane.showInputDialog(frame,
"Pick a Drive", " ", JOptionPane.PLAIN_MESSAGE, null,
possibilities, "C:/");
Is there a quicker way to make the options "A:/" to "Z:/" in possibilities
without having to write every letter out?