dim words() as string = {"chocolate", "bread", "curry", "burger", "noodles", "steak", "bacon", "pasta", "ham", "sweet corn", "squid"}
dim randomValue as integer
randomValue = GetRandom(0,10)
randomWord = words(randomValue)
Console.WriteLine(randomWord & randomWord & randomWord & randomWord )
Public Function GetRandom(ByVal Min As Integer, ByVal Max As Integer) As Integer
Static Generator As System.Random = New System.Random()
Return Generator.Next(Min, Max)