Given an ArrayList a , write an expression that refers to the first element of the ArrayList.
So, if the array a held the following values: 33,14,97,265, 84, then the value of your expression should be 33.
I tried:
Object obj = arrayList.get(33);
What am I doing wrong?