static S fairlyRandomChars(int n) { new StringBuilder buf; repeat n { buf.append((char) random(0x1000)); } ret str(buf); }