using System;
public class Program
{
public static void Main()
string[] str = new string[] {"a"};
str[0] = "kek";
Console.WriteLine(str[0]);
}