Please login to save your progress.
Collections
Exercise: Read and write list values
Goal
Please add the item Chewbacca to the list. On the next line, write the first item in the list to the Console.
x
1
using System;
2
using System.Collections.Generic;
3
4
public class Program
5
{
6
public static void Main()
7
{
8
List<string> characters = new List<string>();
9
10
// Your code goes here.
11
}
12
}
Page 8 of 31