public class Solution {
    public static void main(String[] args) throws Exception {
        BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
        int[] Big = new int[20];
        int[] small1 = new int[10];
        int[] small2 = new int[10];
        for (int i = 0; i < 20; i++){
            Big[i] = Integer.parseInt(reader.readLine());
        }
        for (int i = 0; i < 10; i++){
            small1[i] = Big[i];
            int m = i + 10;
            small2[m] = Big [m];
            System.out.println(small2[i]);
        }

    }
}
При компиляции , после ввода 20 цифр , выдает ошибку Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 10 at com.javarush.task.task07.task0705.Solution.main(Solution.java:22). Помогите разобраться