label_items(items) that returns a list of strings formatted as "index: value" for each element in items, using enumerate() in the loop rather than manually tracking an index counter.label_items(["apple", "banana"])
["0: apple", "1: banana"]
Zero-based indices paired with values.
`for i, value in enumerate(items):` gives you both the index and the value.
Build each formatted string with an f-string.