测试你对Java异常概念、分类体系、异常处理机制和最佳实践的掌握程度
int[] arr = {1, 2, 3}; System.out.println(arr[5]);
try { return 1; } finally { return 2; }