Code coach problem, help me?
: Jagged arrays Write a program to take the numbers of each day's winners as input and output them. Sample Input 2 3 4 Sample Output Bridgette Ramona Fran Mayur Kristian Dana Explanation Day 1 winner is Bridgette Ramona (the 2nd participant of day 1) Day 2 winner is Fran Mayur (the 3rd participant of day 2) Day 3 winner is Kristian Dana (the 4th participant of day 3) My solution doesn't work int day1Winner = Convert.ToInt32(Console.ReadLine()); int day2Winner = Convert.ToInt32(Console.ReadLine()); int day3Winner = Convert.ToInt32(Console.ReadLine()); string[][] olympiad = new string[][] { //day 1 - 5 participants new string[] { "Jill Yan", "Bridgette Ramona", "Sree Sanda", "Jareth Charlene", "Carl Soner" },etc Console.WriteLine(olympiad [0] [day1Winner-1 ]); Console.WriteLine(olympiad [1] [day2Winner-1]) Console.WriteLine(olympiad [2][day3Winner-1]); Please tell me what the problem is?