Mubashir has a cat and a dog. He purchased both of them at the same time humanYears ago.
Create a function which takes an argument of humanYears and returns [humanYears, catYears, dogYears] array.
calculateYears(1) ➞ [1, 15, 15]
calculateYears(2) ➞ [2, 24, 24]
calculateYears(10) ➞ [10, 56, 64]N/A