// This program demonstrates a client program // that utilizes the ArrayIntList class to // create two lists and adds numbers to the // lists. public class ArrayIntListClient { public static void main(String[] args) { ArrayIntList list1 = new ArrayIntList(); ArrayIntList list2 = new ArrayIntList(); list1.add(6); list1.add(43); list1.add(97); list2.add(72); list2.add(-8); System.out.println(list1); System.out.println(list2); } }