You are given the following piece of code.
const { finished } = require('node:stream/promises');
const fs = require('node:fs');
async function goStream() {
const myStream = fs.createReadStream('archive.zip');
await finished(_____);
console.log('Stream is finished');
}
goStream()
.catch(console.error);
What should you put instead of the blanks to correctly finish the stream?