So I would like to create multiple lists that have similar but different names.
So far I have:
for(int i=1; i<11; i++){
String listName = String.format("listNumber%d", i);
int[] listName;
}
How can I change the third line so I would get listNumber1, listNumber2 etc