ArrayList get() Example ArrayList<String> list = //List instance String firstElement = list.get(0); String sixthElement = list.get(5);