write a function that takes two arrays and adds the first element in the first array with the first element in the second array, the second element in the first array with the second element in the second array, etc, etc. return true if all element combinations add up to the same number. otherwise, return false.