M-4 Create a random color
Create a random color by creating three different random number integers from 0 to 255. Store them into an array.
Then try to paint the background body of your document with the combination of colors you created by putting the randomly generated numbers into an rgb() function as arguments.
hint:
Check the document.body.style.background = 'rgb(three numbers here)'