Westonci.ca is the premier destination for reliable answers to your questions, brought to you by a community of experts. Find reliable answers to your questions from a wide community of knowledgeable experts on our user-friendly Q&A platform. Our platform offers a seamless experience for finding reliable answers from a network of knowledgeable professionals.

What will be the output of the following statements?
arraylist names = new arraylist();
names.add("annie");
names.add("bob");
names.add("charles");
for (int i = 0; i < 3; i++)
{
string extra = names.get(i);
names.add (extra);
}
system.out.print (names);