Mental Model
To delete an element from the middle of an array, we shift all elements after it one step left to fill the gap.
Analogy: Imagine a row of chairs where one person leaves from the middle; everyone behind moves one seat forward to close the empty spot.
Index: 0 1 2 3 4 Array: [1]->[2]->[3]->[4]->[5]