Since Lists in
Java are zero based, this isn't possible. You would need to retrieve these three values with 0, 1, 2.
If each user has an ID and you're trying to retrieve a user by its ID, don't use an ArrayList at all. A Map allows you to retrieve values by their key, and that might be better suited to this task.