I dont understand how this works

string[] friends = { "Zuka", "Jajo", "Bedo", "Quji", "Rhaast" };

Console.WriteLine(" ");

foreach (string s in friends)
{
Console.WriteLine("Hello " + s);
}
so why does the string s transform into the friends I understood for how it worked with ints but I dont get it for strings
Was this page helpful?