using System;

namespace app10
{
    class app10
    {
        static void Main(string[]args)
        {
            string []cars = {"hyundai","ambasador","maruti"};
            {
                Console.WriteLine(cars[1]);
            }
            string [] months = {"oct","nov","dec","jan"};
            {
                Console.WriteLine(months[2]);
                {
                    string []car1 = {"hyundai","ambassador","maruti"};
                    for(int i =0; i<car1.Length;i++){
                        Console.WriteLine(car1[i]);
                    }
                }
            }
            }
        }
    }

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: