Next up, we'll want to set the color property of the el variable to the input element's value.
color
el
input
value
Make sure to pick el.style.color followed by = and then input.value, ;.
el.style.color
=
input.value
;