// Short program that demonstrates the use of a variation of ArrayList that // adds two of each value every time add is called. import java.util.*; public class StutteredListClient { public static void main(String[] args) { List list = new StutteredList<>(); list.add("four"); list.add("score"); list.add("and"); list.add("seven"); list.add("years"); list.add("ago"); System.out.println("list = " + list); } }