Mental Model
Reversing a string means flipping its characters so the last becomes first and the first becomes last.
Analogy: Imagine reading a sentence backward, starting from the end and moving to the beginning, like rewinding a tape.
Original: h -> e -> l -> l -> o -> \nReversed: o -> l -> l -> e -> h -> \n↑start ↑end
