Given an array of numbers, return boolean if all numbers are greater than 3.
// input: const a = [4, 5, 6, 7] // output: true
/* output */