using System; public class Program
{public static void Main()
{// array name new array values inside the array
var fishCaughtPounds = new int[] { 5, 10, 15, 12, 20, 25, 18, 7 };
// 0 1 2 3 4 5 6 7
// here we display the 4th element or value of the array
Console.WriteLine(fishCaughtPounds[3]);
}