There is no built-in way to do this. Just create a new two-dimensional array and transfer the contents of your existing one-dimensional array to the first line of this new array.
This is what this function does:
Function AddDimension(arr() As String, newLBound As Long, NewUBound As Long) As String()
Dim i As Long
Dim arrOut() As String
ReDim arrOut(LBound(arr) To UBound(arr), newLBound To NewUBound)
For i = LBound(arr) To UBound(arr)
arrOut(i, newLBound) = arr(i)
Next i
AddDimension = arrOut
End Function
Usage example:
nameArray = AddDimension(nameArray, 1, 5)