Santa would like to make a Juke box system so that he can pick his favourite Christmas songs. There are three songs that he loops through listening to. He would like you to print out the chorus of the song (of your choice) depending on which number is generate.
For this program, the break down is as follows: -
Write out 3 functions
Inside each function will required the print out of the chorus
generate a random number between 1 and 3
if number 1 is generated - function 1 will run
if number 2 is generated - function 2 will run
if number 3 is generated - function 3 will run
This should generate a random song to play
Bonus 10 points if you can get it to iterate and ask Santa if he would like another song, If he says no - The program will stop looping.
I have attached a guide of how functions look and how you can call on basic functions.