{"ScriptPreparationCode":"function test(a, b, c, d, e) {\r\n return a \u002B b \u002B c \u002B d \u002B e;\r\n}\r\nvar result;\r\nvar using = (new Array(5)).fill(null).map(() =\u003E Math.random());","TestCases":[{"Name":"spread","Code":"result = test(...using);","IsDeferred":false},{"Name":"apply","Code":"result = test.apply(null, using)","IsDeferred":false}]}