What does the following HTML code do?
<audio controls loop> <source src="audio.mp3" type="audio/mp3"> </audio>
Displays an audio player that loops "audio.mp3".
Displays nothing because the file type description is missing.
Displays an error due to the simultaneous use of "controls" and "loop" attributes.
Automatically plays "audio.mp3" in a loop.