static L selectRandom(L list, int n) { new L l; list = cloneList(list); n = min(n, l(list)); repeat n { int i = rand(l(list)); l.add(list.get(i)); list.remove(i); } ret l; }