Task
📝 **Task:** Use list comprehensions to build three lists and print them in order:\n\n1. \`cubes\` — cubes of 1 through 5 inclusive → \`[1, 8, 27, 64, 125]\`\n2. \`empty\` — same shape but \`range(0)\` (empty iterable boundary) → \`[]\`\n3. \`even_cubes\` — cubes of EVEN numbers in 1..5 (filter clause) → \`[8, 64]\`
📋 Edit the starter code below. Tests run automatically.
💡 **Hint:** Re-read the theory if you get stuck.