In this excercise I encountered the following: public static void get10000(List list) { if (list.isEmpty()) return; int x = list.size() / 2;//. =====> why is de list.size divided by two? for (int i = 0; i < 10000; i++) { list.get(x); =====> why not list.get(i) ??