val list: MutableList = ArrayList() list.add(3, "Hello") // Adds Hello as the third item in list list.add("Goodbye") // Adds Goodbye to the end of list