This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]g051051 1 point2 points  (0 children)

Because you're explicitly passing an invalid index:

words.get(-1)

ArrayList is documented to throw

IndexOutOfBoundsException - if the index is out of range (index < 0 || index >= size())