local integer Lowest = Array{0} //this is more efficient and i think that number you put in is greater than the biggest integer allowed
local integer NumValues = 5 // Your amount of values
local integer Index = 1
loop
exitwhen Index >= NumValues
if Array{Index} < Lowest then
set Lowest = Array{Index}
endif
set Index = Index + 1
endloop