This code is trying to add "grape" to the list of fruits, but it's doing it the wrong way and will cause an error.
Fix the code so it correctly adds "grape" to the end of the list and prints the result.
Hint: You can't add a string to a list with +. Use the right list method instead!
💡 Hints
?Hint 1
🔒Hint 2
🔒Hint 3
python
fruits = ["apple", "banana"]
fruits = fruits + "grape"
print(fruits)