Is the indexOf(String) method case sensitive? If so, is there a case insensitive version of it?
indexOf is case sensitive. This is because it uses the equals method to compare the elements in the list. The same thing goes for contains and remove.