So that the following would be possible too: ``` js QUnit .cases([ [2, 3, 5], [1, 2, 3], [-1, 0, -1], ]) .test("Sum test", function(a, b, expectedSum) { var actualSum = sum(a, b); equal(actualSum, expectedSum); }); ```