{"ScriptPreparationCode":"function genHexString(len) {\r\n const hex = \u00270123456789ABCDEF\u0027;\r\n let output = \u0027\u0027;\r\n for (let i = 0; i \u003C len; \u002B\u002Bi) {\r\n output \u002B= hex.charAt(Math.floor(Math.random() * hex.length));\r\n }\r\n return output;\r\n}\r\n\r\nvar hashIds = [];\r\nvar randi = genHexString(32);\r\n\r\nfor(var i=0; i\u003C500; i\u002B\u002B) {\r\n\thashIds.push(genHexString(32));\r\n}\r\n\r\n\r\n","TestCases":[{"Name":"indexOf","Code":"hashIds.indexOf(randi) \u003E -1","IsDeferred":false},{"Name":"includes","Code":"hashIds.includes(randi)","IsDeferred":false}]}