In the end I need to know if all the elements are -1 and be able to set a variable to say all = -1 (true) or all elements do not = - 1 (false)

so to continue the examples above

Code:

$array = 0,0,0,-1,0,-1; example of what the array would contain.
;Option 1
For $ = 0 to 5
$2 = $2 | $array[$]
Next
If $2 = -1
$Flag = "True"
Else
$Flag = "False"
EndIf
;Option 2
For $ = 0 to 5
$2 = $2 ^ $array[$]
Next
If $2 = -1
$Flag = "True"
Else
$Flag = "False"
EndIf
;Option 3

For $ = 0 to 5
$2 = $2 ~ $array[$]
Next
If $2 = -1
$Flag = "True"
Else
$Flag = "False"
EndIf