I have two ArrayLists of equal size. List 1 consists of 10 names and list 2 consists of their phone numbers.
ArrayList
I want to concat the names and number into
ArrayList resultList = new ArrayList(); resultList.addAll(arrayList1); resultList.addAll(arrayList2);