246d201
1
2
3
4
5
6
7
export const getRandomKey = (obj: Record<string, string>) => { const keys = Object.keys(obj); const randomKey = keys[Math.floor(Math.random() * keys.length)]; return randomKey; };