export function randomKey<K, V>(x: Entries<K, V>, fr: ReadFunction<number>=Math.random): K {
  return arrayRandomValue([...keys(x)], fr);
}