I spotted a small error in the Finally, Colors. section:
const color = floor(random() * palette.length);
const paletteIdx = floor(random() * palette.length); const color = palette[paletteIdx];
I spotted a small error in the Finally, Colors. section:
...should probably be