You can use document.querySelector to fetch elements from your HTML document.
document.querySelector
In this lesson, we pass an Id to querySelector indicated with a #.
querySelector
#
document.querySelector('#movie-2').
document.querySelector('#movie-2')
querySelector will return the first element that it matched.