using System;

namespace ArrayApplication {
   class MyArray {
      static void Main(string[] args) {
         int [] n = new int[5];
         int i,j;

         /* begings from index 0 */
         for ( i = 0; i < 5; i++ ) {
            n[ i ] = i + 5;
         }

         for (j = 0; j < 5; j++ ) {
            Console.WriteLine("Element[{0}] = {1}", j, n[j]);
         }
         Console.ReadKey();
      }
   }
}