public static void Main()
summerStrut = new string[] { "Juice", "Missing U", "Raspberry Beret", "New York Groove", "Make Me Feel", "Rebel Rebel", "Despacito", "Los Angeles" };
int[] ratings = { 5, 4, 4, 3, 3, 5, 5, 4 };
int threeStarSong = Array.IndexOf(ratings, 3) + 1;
Console.WriteLine ("Song number " + threeStarSong + " is rated three stars.");
string[] summerStrutClone;
summerStrutClone = (string[]) summerStrut.Clone();
Console.WriteLine(summerStrutClone[1]);
string firstSong = Array.Find (summerStrut, song => song.Length > 10);
Console.WriteLine ("The first song that has more than 10 characters in the title is " + firstSong);
Console.WriteLine(summerStrut[0]);
Console.WriteLine(summerStrut[summerStrut.Length-1]);
int[] plantHeights = new int[3];
Console.WriteLine (plantHeights [1]);
int arrayLength = summerStrut.Length;
Console.WriteLine(arrayLength);
Console.WriteLine ("summerStrut Playlist is ready to go!");
else if (arrayLength > 8)
Console.WriteLine ("Too many songs!");
Console.WriteLine ("Your Playlist needs 8 songs");
string printRating = ratings[1].ToString();
Console.WriteLine (printRating);
Console.WriteLine ("You rated the song "+ summerStrut [1] + " " + printRating + " stars." );