You can use this library to validate your answer before you submit your code.
$ npm install movie-titles-fetcher
const MovieTitlesFetcher = require("movie-title-fetcher");
const fetcher = new MovieTitlesFetcher();
fetcher.get("spiderman").then(result => {
// All titles including "spiderman" are returned
console.log(result);
});