Loop Exercises: Task 5

Query and play a song

When the "Get Song" button (below) is clicked, name, artist, album cover, and audio clip of a song. Each song should be represented in the following format (but the actual info should be different):

<section class="song">
    <h2>Blowin' in the Wind</h2>
    <img src="https://i.scdn.co/image/ab67616d0000b2737d214af8499aa95ad220f573">
    <p>Bob Dylan</p>
    <audio controls src="https://p.scdn.co/mp3-preview/669fd8752..."></audio>
</section>
            

Note: you will not need to use a loop here. Just output the appropriate properties from the song object!