using System.Collections.Generic;
public static void Main()
List<string> months = new List<string>
foreach (string month in months)
Console.WriteLine($"<h2>The current month is {month}.</h2>");
Console.WriteLine($"The first month of the year is {months[0]}");
Console.WriteLine($"The last month of the year is {months[months.Count-1]}");