5 lines
154 B
Text
5 lines
154 B
Text
;Extend the Array above to 56 items without affecting the already stored data
|
|
ReDim MyArray(55)
|
|
MyArray(22) = 7
|
|
MyArray(33) = 11
|
|
MyArray(44) = 23
|