java arraylist remove
//create ArrayList ArrayList<String> arrayList = new ArrayList<String>(); //add item to ArrayList arrayList.add("item"); //check if ArrayList contains item (returns boolean) System.out.println(arrayList.contains("item")); //remove item from ArrayList arrayList.remove("item");