Write a function called solution that takes in 2 parameters, a number and a function.
solution(2000, () => {
// This function will be run 2000ms after solution is called,
// and after that, it will be run after another 3000ms
console.log('hello')
return 3000
})