// your code goes here
// In this challenge, I want you to create a Dashboard for all our films. Each film should be
// displayed in our browser, in a box of its own with an image of the film of your choice, similar
// to how it would
// look on Netflix.
// Please solve this using the film array, as this is an array exercise. Do not hardcode the names,
// even though it might be tempting!
const films = ['Jaws', 'Aliens', 'Bad Santa', 'Casablanca', 'Ghost', 'Twister', 'legally Blonde',
'Elf', 'Zoolander']
// hint: use a for loop to create the boxes and add information to them.
//level up:
//1. Are you able to add your own personal rating to each film card too?