I have a snippet of code and for some odd reason I can not print it.
int[] answer = new int[15];
for (int i = 0; i < answer.Length; i++)
{
answer[i] = Console.ReadLine(answer);
}
It says that I can not do Console.ReadLine(answer);
. How would I get this snippet of code to work?