https://git.spwbk.site/swatson/pico8/raw/master/color_noise.p8
___________________________________
pico-8 cartridge // http://www.pico-8.com
version 18
__lua__

function fps()
 f = stat(7)
 print("fps: "..f, 0, 120, 1)
end

cls()
while 1 do
for x=0,95 do
 for y=0,95 do
   r = rnd(9)
   if (r > 8) then
     pset(x,y,1+rnd(9))
     fps()
   end
 end
end
flip()
end

__gfx__
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00700700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00077000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00077000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00700700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000