A 10x10 grid?
Maybe what you really want is a two-dimensional array instead. I'm not sure how you intend to read diagonally, but here is how you declare an array:
Dim Array(10, 10) As String
This declares a two-dimensional array of 11 * 11, a total of 121, with Option Base 0 (the default)...