The function name and the opening parentheses doesn't get rendered. ```sql SELECT ) OVER(PARTITION BY employee.department) FROM employee ``` Instead of ```sql SELECT ROW_NUMBER() OVER(PARTITION BY employee.department) FROM employee ```