Jungle Camping challenge C#
I don't learn C# but this annoys me. Whenever I run this code, it outputs an error telling me to use the "fixed" keyword when I don't even know what it is. I'm bad at arrays. string a, b, c, d; a = "Grr"; b = "Rawr"; c = "Ssss"; d = "Chirp"; string e[10]; e[0] = Console.ReadLine(); e[1] = Console.ReadLine(); e[2] = Console.ReadLine(); e[3] = Console.ReadLine(); e[4] = Console.ReadLine(); e[5] = Console.ReadLine(); e[6] = Console.ReadLine(); for (int i = 0; i < 7; i++) { if (e[i] == a) { Console.Write("Lion "); } if (e[i] == b) { Console.Write("Tiger "); } Is there anything wrong in this code?