{"ScriptPreparationCode":"function generateRandomString(length) {\r\n const randomValues = new Uint8Array(length);\r\n window.crypto.getRandomValues(randomValues);\r\n const randomChars = Array.from(randomValues, (value) =\u003E String.fromCharCode(value));\r\n return randomChars.join(\u0027\u0027);\r\n}\r\n\r\nconst text = generateRandomString(1000);","TestCases":[{"Name":"match","Code":"const numbers = text.match(/\\d\u002B/g)","IsDeferred":false},{"Name":"split","Code":"const numbers = text.split(/\\d\u002B/g)","IsDeferred":false}]}