Create a function which validates whether a given array alternates between positive and negative numbers.
alternatePosNeg([3, -2, 5, -5, 2, -8]) ➞ true
alternatePosNeg([-6, 1, -1, 4, -3]) ➞ true
alternatePosNeg([4, 4, -2, 3, -6, 10]) ➞ false
false (as it is neither positive nor negative).