Just like in the previous project, we'll now use querySelectorAll() to get the second input element. This time, add [1] at the end.
querySelectorAll()
input
[1]
Make sure to pick document followed by . and then querySelectorAll, (, "input", ), [, 1, ].
document
.
querySelectorAll
(
"input"
)
[
1
]