I am looping through an array of strings, such as (1/12/1992 apple truck 12/10/10 orange bicycle). The array\'s length will always be divisible by 3. I need to loop through
string[] friends = new string[4]; friends[0]= "ali"; friends[1]= "Mike"; friends[2]= "jan"; friends[3]= "hamid"; for (int i = 0; i < friends.Length; i++) { Console.WriteLine(friends[i]); }Console.ReadLine();