can you help me fix this code the frist number of the array is giving a error
Dim studid() = {7908205555, 89546214, 2435325, 25463, 264326, 263626, 262261}
Dim id As Integer
id = Integer.Parse(TextBox1.Text)
For i = 0 To studid.Length - 1
If id = studid(i) Then
ListBox1.Items.Add("the id is number " & id & "is a number ")
End If
Next
End Sub