Array Challenge
Have the function ArrayChallenge(strArr) take the array of strings stored in strArr, which will only contain two strings of equal length, and return the number of characters at each position that are different between them. For example, if strArr is ['house', 'hours'], then your program should return 2. The strings will always be of equal length and will only contain lowercase characters from the alphabet and numbers.
Examples:
Input: ['10011', '10100']
Output: 2
Input: ['abcdef', 'cefabc']
Output: 6