I'm new to VBA and I'm trying to create a multidimensional array. Per MSDN, I have the following:
Sub answersArray()
Dim answers (,) As String
End Sub
This gives me the error "Expected: expression" and highlights the comma in the declaration statement. What am I doing wrong?