reverse_list(items) that returns a new reversed list using slice notation ([::-1]), without mutating the original list or using .reverse().items = [1, 2, 3, 4]
[4, 3, 2, 1]
A step of -1 walks the list backwards.
items[::-1] creates a reversed copy.