// String array in Unity C#
string[] names = new string[] {"red", "green", "blue"};
// To use lists, make sure to have this at the beginning of your program
using System.Collections.Generic;
// To declare a new list
public List listOfColours = new List();
// To add elements to your list
void Start()
{
listOfColours.Add("Red");
listOfColours.Add("Green");
listOfColours.Add("Blue");
}