Good start in your comment but what is in your array is strings not integers so you would loop through the strings.
Dim TeamString(31) As String
For Each Team As String In TeamString
MessageBox.Show("Team Name:" & Team)
Next
0
solved Converting the For Next Loop into a For Each Loop