Create a program that does the following:
- Creates a canvas 500 pixels wide and 500 pixels tall
- Sets a black background
- Draws two rectangles that are 50 pixels wide and as tall as the canvas
- One is on the left side of the screen, the other the right
- Both should be colored BROWN
- A circle should fall from the top of the screen
- It should move downward at the speed of 5 pixels per frame.
- There should be no trails
- The circle should have a new random color every frame.
- It should appear at a random location between the two brown rectangles, but never touch either of them.
- When it reaches the bottom of the screen, a new circle should appear at the top of the screen with a new position.
- Record Time: 2 min 1 second by Matt R.