Task
📝 **Task:** Use \`enumerate()\` in three scenarios:\n\n1. Print \`["apple", "banana", "cherry"]\` with 1-based index, format \`"1. apple"\`\n2. Same loop over an empty list — boundary: nothing prints. Then print \`"--- empty done ---"\` so we can see the loop ran.\n3. Print \`["only"]\` with DEFAULT start=0, format \`"0: only"\` (no space before \`:\`)
📋 Edit the starter code below. Tests run automatically.
💡 **Hint:** Re-read the theory if you get stuck.