I do not know what your goal is, but I would loop through an array like this
Code:

Break On
$array = 0,0,0,-1,0,-1
For $n = 0 to Ubound($array)
If $array[$n] = -1
? 'Element ' + $n ' is -1'
EndIf
Next