Arithmetics javascript

Здравейте, може ли малко разяснение към следното решение на задача Arithmetics javascript . Във VS code решението е вярно, но не и в judge системата.
const getGets = (arr) => {
let index = 0;

return () => {
    const toReturn = arr[index];
    index += 1;
    return toReturn;
};

};
// this is the test
const test = [
2,
2
];

const gets = this.gets || getGets(test);
const print = this.print || console.log;

const a = +gets();
const b = +gets();
const sum = a + b;
const difference = b - a;
const product = a * b;
const remainder = a % b;
const power = Math.pow(a, b);
print(sum);
print(difference);
print(product);
print(remainder);
print(power);

Здравей.
Ето тук ти е грешката - The difference when a is subtracted from b

Благодаря :slight_smile: