Given two promises, create a function to determine whether the second promise is faster than the first. If it is, return true. Otherwise, return false.
speedTest(promise1, promise2) ➞ true
// promise2 resolves faster
speedTest(promise1, promise2) ➞ false
// promise1 resolves faster
await both promises when executing them.