Task
📝 **Task:** Count how many times `"apple"` appears in `text = "apple banana apple orange banana apple"`.
📋 Use `text.split().count("apple")`.
💡 **Similar example:**
```python
text = "cat dog cat fish cat bird"
words = text.split()
print(words.count("cat")) # 3
```
🎯 **Expected output:** `3`