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