What error is it giving you?

Edit: Doing some research, you can only use the ReDim command on dynamic arrays. Static arrays will give an "Array already dimensioned" error.

If you change to:
Code:
Dim mtx() As String
then the
Code:
ReDim mtx(2,size)
should work I believe.