{"ScriptPreparationCode":"function randAlphanumCode() {\r\n const n = Math.trunc(Math.random() * 1e3) % 62;\r\n return n \u003C 10\r\n ? n.toString()\r\n : String.fromCodePoint(n \u002B ( n \u003C 36 ? 55 : 61 ));\r\n}\r\n\r\nfunction randAlphanumChar() {\r\n const n = Math.trunc(Math.random() * 1e3) % 62;\r\n return n \u003C 10\r\n ? n.toString()\r\n : String.fromCharCode(n \u002B ( n \u003C 36 ? 55 : 61 ));\r\n}\r\n","TestCases":[{"Name":"Char","Code":"randAlphanumChar()","IsDeferred":false},{"Name":"Code","Code":"randAlphanumCode()","IsDeferred":false}]}