Dim StarterChoice As Integer
Dim StarterMeal(6) As String
Dim StarterPrice(6) As Decimal
Dim MainChoice As Integer
Dim MainMeal(6) As String
Dim MainPrice(6) As Decimal
Dim PuddingChoice As Integer
Dim PuddingPrice(6) As String
Console.WriteLine("Welcome to Osa's returant.")
StarterMeal(1) = "Cullen Skink Soup"
StarterMeal(2) = "Home Curved Gravlax"
StarterMeal(3) = "Chicken Liver Terrine"
Console.WriteLine("Option " & i & ". " & StarterMeal(i) & ", £" & StarterPrice(i))
Console.WriteLine(" Please pick a Starter from 1 to 3.")
StarterChoice =Console.ReadLine()
MainMeal(1) = "Haddock Veronique"
MainMeal(2) = "Sirlion Steak"
MainMeal(3) = "Liecestershire Chicken"
Console.WriteLine("Option " & i & ". " & MainMeal(i) & ", £" & MainPrice(i))
Console.WriteLine(" Please pick a Meal from 1 to 3.")
MainChoice =Console.ReadLine()
Pudding(1) = "Jaffa Mud Cake"
Pudding(2) = "Poached Pear"
Pudding(3) = "Coffee and Walnut Cake"
Console.WriteLine("Option " & i & ". " & Pudding(i) & ", £" & PuddingPrice(i))
Console.WriteLine(" Please pick a Pudding from 1 to 3.")
PuddingChoice = Console.ReadLine()
Console.WriteLine("You Chose the " & StarterMeal(StarterChoice) & " as your Starter, for " & StarterPrice(StarterChoice))
Console.WriteLine("You Chose the " & MainMeal(MainChoice) & " as your Main Meal, for " & MainPrice(MainChoice))
Console.WriteLine("You Chose the " & Pudding(PuddingChoice) & " as your Desert, for " & PuddingPrice(PuddingChoice))