###Keyword###
ReDim

###Description###
Resize an existing array

###Syntax###
<b>ReDim</b> $aArray<b>[</b>subscript 1<b>]</b>...<b>[</b>subscript n<b>]</b>


###Parameters###
@@ParamTable@@
$aArray
	The name of the array to resize.
subscript
	The number of elements to create for the array dimension, indexed 0 to n-1.
@@End@@

###Remarks###
The <a href="ReDim.htm">ReDim</a> keyword is similar to <a href="Dim.htm">Global/Local</a>, except that ReDim preserves the values in the array instead of removing the values while resizing an array.
The number of dimensions must remain the same, or the old array will be forgotten during the <a href="ReDim.htm">ReDim</a>.
The array will retain the scope (Global or Local) that it had prior to resizing.


###Related###
Dim, UBound


###Example###
@@IncludeExample@@
