What does this code log?Promise.resolve(1).then(() => { throw "fail"; }).catch(e => "resolved").then(v => console.log(v));