I’m not super familiar with ranges as I don’t program in any languages that lean into it. I can give a C# example though.
Say I have a list of strings (List
foreach (var coworker in myCoworkers)
{
Console.WriteLine(coworker);
}
Does that make sense? No need for an index.