//Array from user input Console.WriteLine("\nPlease enter the first number of the first array");
int a = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("\nPlease enter the second number of the first array");
int b = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("\nPlease enter the third number of the first array");
int c = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("\nPlease enter the fourth number of the first array");
int d = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("\nPlease enter the fifth number of the first array");
int e = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("\nPlease enter the sixth number of the first array");
int f = Convert.ToInt32(Console.ReadLine());
int[] Array1 = { a, b, c, d, e, f };
//Problem is here, it just prints "System.Int32[]"
Console.WriteLine(Array1);