Task
📝 **Task:** Given \`nums = [10, 20, 30, 40]\` use starred unpacking to set first=10, last=40, middle=[20,30]. Print middle. Expected: [20, 30]
📋 Edit the starter code below. Tests run automatically.
💡 **Hint:** Re-read the theory if you get stuck.