assign first and third values to a and b
my code so far
using System;
namespace HelloWorld
{
class Program
{
static void Main(string[] args)
{
int[] array = { 4, 6, 8, 3, 2 };
int a, b;
array [a]=1;
array [b]=3;
Console.WriteLine(a + ", " + b);
}
}
}