I'm trying to display 2 Arraylist in the JOptionPane. But I get the following on the dialog box
1,2,3,4
Swimming, Running, Cycling, Basketball
I would like to show the info in the dialog box like the following:
1 Swimming
2 Running
3 Cycling
4 Basketball
Please advise how do I go about? Here are my codes.
import javax.swing.*;
import java.util.ArrayList;
public class gamelist {
public static void main(String args[]){
ArrayList<String> sku = new ArrayList<String> ();
sku.add("1");
sku.add("2");
sku.add("3");
sku.add("4");
ArrayList<String> games = new ArrayList<String>();
games.add("Swimming");
games.add("Running");
games.add("Cycling");
games.add("Basketball");
for(int i = 0; i<games.size(); i++){
String everything = sku.toString();
String everything2 = games.toString();
JOptionPane.showInputDialog(null, everything +"\n"+ everything2);
}
}
}