public class Main {
public static void main(String[] args) {
    int[] numbers = {1, 2, 3}; // it gives me arrayindexoutofboundexception
    int length = numbers[3];
    char[] chars = new char[length];
    chars[numbers.length + 4] = 'y';
    System.out.println("Done!");
}
}
How to remove array index out of bound exception .
 
     
    