Implement myAny(promises)
Write myAny(promises) that resolves with the value of the first promise to fulfill, ignoring rejections along the way. It only rejects if every promise rejects.
myAny([Promise.reject("no"), delay(10, "yes")]); // resolves "yes"
myAny([Promise.reject("a"), Promise.reject("b")]); // rejects