Erro java.lang.ArrayIndexOutOfBoundsException

Pessoal, eu tenho uma matriz
3 4 5 6
4 5 6 7
1 3 4 6

Exception in thread “main” java.lang.ArrayIndexOutOfBoundsException: 3
at Leitura.Solar.main(Solar.java:93)

está fazendo a leitura corretamente, porém as funções estão dando erro, alguem me ajuda por favor

                for (int i = 0; i < matriz.length; i++) {
                    for (int j = 0; j < matriz[i].length; j++){
                        for (int k = 0; j < matriz[i][j].length; j++){
                
                       // System.out.println(Arrays.deepToString(matriz));
                        }
                    }
                   
                }

Você está comparando e incrementando o j ao invés do k.