public static void main(String[] args){
List<Integer> two = new ArrayList<Integer>;
two.add("Kyle");
two.add("Randy");
two.add("Shaun");
The goal of this program is to make two of all of the strings so it will print out like this
but I am not sure of how I would do this.
kyle
kyle
randy
randy
shaun
shaun
any help would be appreciated thanks
Try this