Suppose a program throws an ArrayIndexOutOfBoundsException. Which of the following catch statements would NOT handle that exception

catch (IllegalArgumentException ill)
  • catch (Exception ex)
  • catch (ArrayIndexOutOfBoundsException arr)

There are no hints for this question