when i execute the below progam i am getting this errror type or namespace definition, or end-of-file expected in c#
using System;
class Program
{
public static void Main(string [ ] args){
string[] colorList =new string[10];
colorList[0] = "sunday";
colorList[1] = "monday";
colorList[2] = "tuesday";
colorList[3] = "wednesday";
colorList[4] = "thursday";
colorList[5] = "friday";
colorList[6] = "saturday";
for( int i =0; i < 10; i++)
{
Console.WriteLine("Color is: {0}", colorList[i]);
}
Console.ReadLine();
}
}