{"ScriptPreparationCode":"// Preparation: create an array of 10 string values\r\nconst values = [\r\n \u0022alpha\u0022, \u0022bravo\u0022, \u0022charlie\u0022, \u0022delta\u0022, \u0022echo\u0022,\r\n \u0022foxtrot\u0022, \u0022golf\u0022, \u0022hotel\u0022, \u0022india\u0022, \u0022juliet\u0022\r\n];\r\n\r\n// Function to pick a random string from the array\r\nfunction getRandomValue() {\r\n const index = Math.floor(Math.random() * values.length);\r\n return values[index];\r\n}","TestCases":[{"Name":"Some","Code":"const target = getRandomValue();\r\nconst found = values.some(v =\u003E v === target);","IsDeferred":false},{"Name":"Includes","Code":"const target = getRandomValue();\r\nconst found = values.includes(target);","IsDeferred":false}]}