Goldbach's Conjecture is amongst the oldest and well-known unsolved mathematical problems. In correspondence with Leonhard Euler in 1742, German mathematician Christian Goldbach made a conjecture, which states:
"Every even whole number greater than 2 is the sum of two prime numbers."
Even though it's been thoroughly tested and analyzed and seems to be true, it hasn't been proved yet (thus, remaining a conjecture.)
Create a function that takes a number and returns an array as per the following rules:
goldbachConjecture(1) ➞ []
// The given number is not greater than 2.
goldbachConjecture(7) ➞ []
// The given number is not an even number.
goldbachConjecture(14) ➞ [3, 11]
Return array in sequence: [smaller, bigger]