getList().get(8);
Keep in mind that the tt index is based on 0. Thus, the index 8means an element 9th.
Tip: Always watch javadoc or open the autocomplete of your IDE to find out what methods your object uses. Most of them are named and documented in such a way that it is clearly known what they are actually doing.
, google "ArrayList", ( java.sun.com) .