Java Print 2D Char Array

public static void printGrid(char arr[][]) {
        for (int row = 0; row < arr.length; row++) {
            for (int col = 0; col < arr[row].length; col++) {
                System.out.printf(arr[row][col] + "");
            }
            System.out.println();
        }
    }
PRO_GrAMmER (IA Fahim)