Task
📝 **Task:** From `numbers = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]` keep only evens via list comprehension.
📋 Use `[n for n in numbers if n % 2 == 0]`.
💡 **Similar example (filter odds):**
```python
nums = [10, 11, 12, 13, 14, 15]
odds = [n for n in nums if n % 2 == 1]
print(odds) # [11, 13, 15]
```
🎯 **Expected output:** `[2, 4, 6, 8, 10]`