Question: How would you access the last two people in an array named People?

  1. `People[..^2]`
  2. `You cannot do this in C#.`
  3. `People[..^3]`
  4. `People[^2]`

Answer: The correct answer of the above question is Option A:`People[..^2]`