
public interface StringList2 {
	
	public StringList2 add(String str);  // add to the end
	public String get(int i); // get element i in the list
	public int size(); // find the size of the list
	public StringList2 remove(int i); // remove index i
	public String show();
	public StringList2 reverse();

}

