const series = [
{
name: 'The Wire',
location: 'Baltimore',
lengthInHours : 60,
genres: ['action', 'thriller', 'detective', 'suspense']
},
{
name: 'Game of Thromes',
location: 'Westeros and Essos',
lengthInHours : 70.25,
genres: ['fantasy', 'action', 'tragedy']
},
{
name: 'Friends',
location: 'New York',
lengthInHours : 85,
genres: ['comedy', 'romance', 'drama']
},
{
name: 'The Walking Dead',
location: 'Atlanta',
lengthInHours : 131,
genres: ['zombie', 'apocalypse', 'thriller', 'suspense']
},
{
name: 'The Big Bang Theory',
location: 'Pasadena',
lengthInHours : 139.66,
genres: ['comedy', 'nerd', 'romance']
},
]
/*
Challenge:
1. Use the .filter() method to create an array
of all of the thrillers.
*/