public boolean palindromeCheck(String word) {
if (word.length() <= 1) return true; //Base Case
if (word.charAt(0) != word.charAt(word.length()-1)) return false; // Base Case
else return palindromeCheck(word.substring(1, word.length()-1)); //Recursive Case
}