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