Menu
×
×
Correct!
Exercise:Loop through the elements in the
string[] cars = {"Volvo", "BMW", "Ford", "Mazda"};
foreach (string i in cars)
{
Console.WriteLine(i);
}
Not CorrectClick here to try again. Correct!Next ❯string[] cars = {"Volvo", "BMW", "Ford", "Mazda"}; foreach (i in ) { Console.WriteLine( ); } |