Once we've accessed an element with JavaScript, we can get its attributes by adding a . followed by the attribute name.
For example, after we've stored an img element inside the el variable, we write el.src to get the attribute value.
Make sure to pick ., followed by src.