using System.Collections.Generic;
public static void Main()
Random rnd = new Random();
int i = rnd.Next(10, 20);
List<string> Städte = new List<string>();
Städte.Add("Düsseldorf");
int Nummer = rnd.Next(0, Städte.Count);
Console.WriteLine(Städte[Nummer]);