yourBooleanArray = Array.ConvertAll(yourBooleanArray, Function(b) Not b)
One important point to note is that this doesn't actually affect the original array object, but rather create a new array object and assign that to the original variable. Generally speaking, that's not going to be an issue but, if you have some other reference to the original array somewhere, that will not be affected.