{"ScriptPreparationCode":"function generateRandomString(length) {\r\n const characters = \u0027ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789\u0027;\r\n let randomString = \u0027\u0027;\r\n\r\n for (let i = 0; i \u003C length; i\u002B\u002B) {\r\n const randomIndex = Math.floor(Math.random() * characters.length);\r\n randomString \u002B= characters.charAt(randomIndex);\r\n }\r\n\r\n return randomString;\r\n}","TestCases":[{"Name":"Split","Code":"const randomString = generateRandomString(15000);\r\nconst result = randomString.split(\u0022\u0022);","IsDeferred":false},{"Name":"Spread","Code":"const randomString = generateRandomString(15000);\r\nconst result = [...randomString];","IsDeferred":false}]}