using System;
using System.Linq;
public class Program
{
public static void Main()
var scores = new[] { 2, 4, 6, 8, 10 };
var scoreCount = scores.Count();
Console.WriteLine(scoreCount);
}