import {randomInt} from 'crypto'; export default function generateID() { return `${Date.now()}${randomInt(100000, 999999)}`; }