Keep getting error even w/correct code

I keep getting the error ‘Type to code into the code editor using the appropriate function, clause, and operator’.
It says to
1.
Count the total number of apps at each price that have been downloaded more than 20,000 times. In the code editor type

SELECT price, COUNT(*) FROM fake_apps
WHERE downloads > 20000
GROUP BY price;

I get the right query results on the right…Am I missing something really obvious?

A post was merged into an existing topic: [#270] Learn SQL - Exercises check not working