// Sample client of ArrayIntList public class ArrayIntListClient { public static void main(String[] args) { ArrayIntList list1 = new ArrayIntList(); list1.add(1); list1.add(97); } }