Create a function that takes an array arr and a number n and returns an array of two integers whose product is that of the number n.
TwoProduct(new int[] { 1, 2, 3, 4, 13, 5 }, 39) ➞ { 3, 13 }
TwoProduct(new int[] { 11, 2, 7, 3, 5, 0 }, 55) ➞ { 5, 11 }
TwoProduct(new int[] { 100, 12, 4, 1, 2 }, 15) ➞ { }