I have an array like this:
Dim aFirstArray() As Variant
How do I clear the entire array? What about a collection?
ReDim aFirstArray(0)
This will resize the array to zero and erase all data.