So we have the array below which is an int array yet it contains strings. How is that possible?
int[][] wordSearch = new int[][]{
               {'f', 'd', 'e', 'r', 'l', 'k'},
               {'u', 's', 'a', 'm', 'e', 'o'},
               {'l', 'n', 'g', 'r', 'o', 'v'},
               {'m', 'l', 'p', 'r', 'r', 'h'},
               {'p', 'o', 'e', 'e', 'j', 'j'}