using System.Collections.Generic;
public static void Main()
string[] fof = new[] { "Ryan", "Kieran", "Mark", "Jimmy" };
public static IEnumerable<string> FriendOrFoe (string[] names) {
List<string> newfof = new List<string>();
foreach (string element in names) {
if (element.Length == 4) {