Concept Flow - Multi-dimensional fancy indexing
Create 2D array
Define index arrays for rows and columns
Use fancy indexing: array[rows, cols
Extract elements at specified positions
Result: 1D array of selected elements
We start with a 2D array, then pick specific rows and columns using arrays of indices, and finally extract elements at those positions into a new array.