export function GenerateOTP(): String {
    console.log("Inside OTPGenerator");
    const OTP: Number = Math.floor(Math.random() * (9999 - 999) + 999);
    console.log("Generated OTP:", OTP);
    return OTP.toString();
}