getRandomString10~11자리의 랜덤 난수를 생성하는 함수입니다.services/utils/index.tsexport const getRandomString = () => Math.random().toString(36).slice(2)Copy