using System;
public class Program
{
public static void Main()
//this is a string array that stores 5 string values
string[] Animals = {"cat","dog","mouse","parrot","goldfish"};
//we cna use the foreach loop to cycle through each element
for(int i=0 ;i<Animals.Length;i++)
Console.WriteLine(Animals[i]);
}