Hey.
I have an arraylist;
public static ArrayList<String> name = new ArrayList<String>();
and its made of of names;
public static String name;
They both had to be static as it didn't work if they weren't.
In the public void static main method, I populate this arraylist.
I then want to use this populated arraylist in another method, but when I go to print its contents(passed in as parameter) its empty!
>