How would you access the last two people in an array named People?
People[^2] Explain: You can do this in C#. However, none of the above answers are correct. You could access the last two items by using People[^2..]. Please see issue #3354 for more information. See also: Official Documentation: Ranges
People[^2]
People[^2..]
People[..^3]
People[..^2]
You cannot do this in C#.