Dynamic Arrays – VBScript
There are two types of arrays: Static arrays Dynamic arrays Static array has to be declared with the number of elements that the array can hold (i.e. arr(5)). If we don’t know the number of elements to be stored in the array, then the dynamic array can be used. Syntax: Dim arr() ReDim keyword should …