Given an array of numbers, return boolean if the array is increasing.
// input: const a = [1, 2, 3, 4, 5] // output: true
/* output */