Complete these tasks to reinforce what you learned in this module.
Create a List<string> with Vienna, Oslo and Lisbon, then print exactly 3 cities, first is Vienna.
Count gives the size and [0] the first element. You need using System.Collections.Generic;.using System;
using System.Collections.Generic;
class Program
{
static void Main()
{
// Build the list and report on it
}
}