Challenge: Animated noise
Turn static noise into animated noise.
Animate the noise
Hint
var = ;
draw = function() {
;
};
Let's smoothly animate this noise over time. That will involve passing a third argument into noise(), using
a draw() function to repaint the current noise, and incrementing the third argument appropriately in each
frame.