As the Split method already returns a string array, your sould start by declaring PingIP as a string array.
vb.net Code:
  1. Dim PingIP As String()
not 100% for the syntax though so you better have a look on the web first.

Then as it is an array, you should use a For loop to loop trough all its string elements, and THEN call Shell method for each element.