When I am programming in VBA, I want to initialise an array as
Dim Testarray(10) As String
Now: What are the initial values of this array without further ado?
Or asked in another way: I want to use this Testarray in order to find out certain values. These certain values are then changed to "Missing Line" or whatsoever. By that, I am able to check all the array values later on in order to find the number of my missing values by going through the respective array via, e.g., a for-loop or something like that.
(Bonus question: Right now, I am learning how to write VBA code. Does an array always have to have a name beginning with a capital letter? Or is it also allowed to begin it with a small letter?)