Q. Code as fast as you can! You need to double the integer and return it.
function findDifference(a, b) { return Math.abs(a.reduce((a, b) => a * b) - b.reduce((a, b) => a * b)) }