in reply to How do I reset an array?
@array = (); [download]
@save = @array; for (@array) { # Loop stuff } @array = @save; [download]