Hi BenNeiderLander,
To pick your name from a drop-down menu, I'd suggest using JComboBoxes. More information can be found
here and
here.
A quick example of how it works is by making an array of Strings, and adding it to a JComboBox.
String[] names = {"Eugene", "James", "Sarah", "Katherine", "Shari", "Roger"} //declare the names
JComboBox newBox = new JComboBox(names); //make a new combobox with the names as selections
Then just add the JComboBox to your panel, frame, etc. Hope this helps!