07-05-2011, 03:36 PM
You should Redim at the time of array declaration as well
Code:
[b]ReDim[/b] work(2)
work(0) = "Mon"
work(1) = "Tue"
work(2) = "Wed"
Erase work
ReDim work(5)
work(3) = "Fri"
PRINT work(4)