I think he means the highest value within an array. A multi-dimension array does not have "columns" as you may think. It is actually a matrix, so you will have to permatate each item like so:

VB Code:
  1. Dim intArray(10, 20) As Integer
  2.         Dim MeRandom As New Random
  3.  
  4.         For intIndex As Integer = 0 To intArray.GetUpperBound(0)
  5.             For intInnnerIndex As Integer = 0 To intArray.GetUpperBound(1)
  6.                 intArray(intIndex, intInnnerIndex) = MeRandom.Next
  7.             Next
  8.         Next
  9.  
  10.         Dim intFoundOutter As Integer
  11.         Dim intFoundInner As Integer
  12.         Dim intCurrentHighestValue As Integer = -1
  13.  
  14.         'Check through the entire set to find the highest value
  15.         For intIndex As Integer = 0 To intArray.GetUpperBound(0)
  16.             For intInnnerIndex As Integer = 0 To intArray.GetUpperBound(1)
  17.                 If intArray(intIndex, intInnnerIndex) > intCurrentHighestValue Then
  18.                     intCurrentHighestValue = intArray(intIndex, intInnnerIndex)
  19.                     intFoundOutter = intIndex
  20.                     intFoundInner = intInnnerIndex
  21.                 End If
  22.             Next
  23.         Next
  24.  
  25.         MessageBox.Show("Found highest number of " & intCurrentHighestValue.ToString & " at (" & intFoundOutter.ToString & "," & intFoundInner.ToString & ")")