{"ScriptPreparationCode":"var myArray = [27, 11, 46, 64, 62, 42, 5, 9];","TestCases":[{"Name":"Spread operator","Code":"Math.max(...myArray);","IsDeferred":false},{"Name":"Array.prototype.reduce()","Code":"myArray.reduce((a, b) =\u003E Math.max(a, b))","IsDeferred":false},{"Name":"Array.prototype.reduce() without arrow function","Code":"myArray.reduce(Math.max)","IsDeferred":false}]}