Controls | Use the w,a,s and d keys to move the avatar

INSTRUCTIONS

In this program you will make the avatar collect the yellow "pickups" and keep track of how many are collected in a variable.

You will then display the total on the canvas
NOTE: You only need to edit the game.js file, but you can and should look at the other two .js files.

This game contains a game object with collision detection capabilities. The collision method is called "overlaps()"
REMINDER:(a method is a function in an object).

There is an example pickup which is blue. The code for picking it up is already programmed so that you can see how the overlaps() method works

You will need to research how to display text on the screen