Dim iTempNotUsed(5) As Integer
Dim sBooze() As String = {"Fosters", "Kronenbourg", "Stella Artois", ""}
Dim iChoice As Integer = 0
sBooze(3) = "Castlemaine"
For x = 0 To UBound(sBooze)
Console.WriteLine("Enter {0} for {1}", (x + 1), sBooze(x))
iChoice = CInt(Console.ReadLine())
Console.WriteLine("A pint of {0} coming up!", sBooze(iChoice - 1))
Console.Write("Summary: ")
For Each beer As String In sBooze
Console.Write("{0}, ", beer)