Getting started part 2 - Chris Pratt's query

add LIMIT 1 to truthfully answer the question on only his first movie (and not a list sorted by release years):
SELECT ?movie ?title ?year
WHERE {
?chris :hasName "Chris Pratt" .
?chris :actedIn ?movie .
?movie :hasTitle ?title ;
:hasYear ?year .
}
ORDER BY ASC(?year)
LIMIT 1