Challenge: Fire starter
Create interactive fire streaks.
Add an initial system
Hint
var systems = [];
// add a system to the array
This program creates new particle systems once the user clicks, and you're going to make those systems
look like fire in this challenge. However, it'll be a lot easier to see your changes if your program starts off
with at least one system, so you don't have to keep clicking. Do that now.