Code a query that selects all titles from the movies table with SELECT title followed by FROM movies;.
movies
SELECT title
FROM movies;
Make sure to pick SELECT title, followed by FROM movies;.