static byte randomByte() {
  ret (byte) random(256);
}

static int randomByte(Random random) {
  ret (byte) random(random, 256);
}