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