Как добавить номер в массив в Java

List<Integer> myList = new ArrayList<Integer>();
myList.add(5);
myList.add(7);
Vast Vulture