Let's say that I have the following set up:
private String one = "abc";
private String two = "def";
private String three = "ghi";
etc.
I want to write a method that returns a random variable, one of the however many I have declared at the top of the class. Is there an easy way to do this?