You only compare the last number, because the output of the loop is NOT autoindexing, thus only contains the last comparison.
Depending on what you need, you can do several things.
First of all, Simply delete the loop (right-click on it, select "remove FOR loop"), it is not needed. If you want a boolean array for the comparison result of each element, take the output of the comparison operation directly.
If you want a single boolean, feed the output of the comparison operation either through an "AND array elements" or "OR array elements" to get a TRUE if either
at least one is bigger/equal or
all are bigger/equal, respectively.
The image shows three possible outputs discussed above. Pick whatever you need.

Message Edited by altenbach on 06-17-2005 04:04 PM