Sorting a single array is a simple task. You just run the Shared Sort method on the array: Dim arCustomers() As String = { "Williams" , "Brown" , "Smith" , "Jones" , "Green" } Array.Sort(arCustomers) For Each Str As String In arCustomers Console.WriteLine...