using System;
public class Program
{
public static void Main()
string[] coworkers = {"Becky","Aoife","Imalka","Oliver"};
foreach (string name in coworkers)
Console.WriteLine(name + " is working the night shift today");
}