As I understand it, Read() should work at each iteration, but alas not
public static int[] fillArray() { int[] tmpMarks = new int[5]; for (int i = 0; i < tmpMarks.Length; i++) { Console.WriteLine("Put " + i + "element"); tmpMarks[i] = Console.Read(); } return tmpMarks; } Only three for some reason.
Thank you in advance :)
