Help me in solving GSQ20 problem

My issue

What is wrong here ???

My code

/* Write a query that does the following
- Where the origin of the flight is 'New York'
- Output the passenger_name and gender */
select passenger_name, gender from flights where origin = 'New yourk';

Learning course: Learn SQL
Problem Link: CodeChef: Practical coding for everyone