Given a number, return an array containing the two halves of the number. If the number is odd, make the rightmost number higher.
numberSplit(4) ➞ [2, 2] numberSplit(10) ➞ [5, 5] numberSplit(11) ➞ [5, 6] numberSplit(-9) ➞ [-5, -4]