A palindrome is a word that is identical forward and backwards.
Given a word, create a function that checks whether it is a palindrome.
CheckPalindrome("mom") ➞ true
CheckPalindrome("scary") ➞ false
CheckPalindrome("reviver") ➞ true
CheckPalindrome("stressed") ➞ falseAll test input is lower cased.