I been following the official begginer guide to create a game, and it said to type this in to the main.js update function:
exports.update = function () {
sprite(random(255), random(120), random(120));
};
and it should be creating tons of random sprites, but instead it only runs 2 times and stops, creating 2 sprites only.
Please help.