Create a function that returns true if the given circular areas are intersecting, otherwise return false. The circles are given as two arrays containing the values in the following order:
isCircleCollision([10, 0, 0], [10, 10, 10]) ➞ true
isCircleCollision([1, 0, 0], [1, 10, 10]) ➞ false