Hey All trying to do a multidimenison array but getting this error

An unhandled exception of type 'System.NullReferenceException' occurred in CompaniesHouseScanner.exe

Additional information: Object reference not set to an instance of an object.

Can you nice people help....


VB Code:
  1. Dim KeyArray(,) As String
  2. Dim i As Integer
  3.  
  4.         KeyArray(0, 0) = ("Office :")
  5.         KeyArray(0, 1) = ("Status :")
  6.         KeyArray(1, 0) = ("status :")
  7.         KeyArray(1, 1) = ("Company No")
  8.  
  9. For i = 0 To 1
  10.  
  11. msgbox(KeyArray(i, 1))
  12.  
  13. next