Create a function that takes a character and a string as arguments and returns the number of times the character is found in the string.
CharCount('a', "edabit") ➞ 1
CharCount('c', "Chamber of secrets") ➞ 1
CharCount('b', "big fat bubble") ➞ 4Your output must be case-sensitive (see second example).