0
I am trying to list the numbers that the user type but am not finding the function,someone can give me a light?
class Program
        {
            static void Main(string[] args)
            {
                int[] atividade = new int[6];
                for (int i = 1; i < 6; i++)
                {
                    Console.WriteLine("Insira o " + i + "° numero: ");
                    atividade[i] = Int32.Parse(Console.ReadLine());