What is the Best Way to Make a Post Request with a 5 Second Wait Between Each Value in Node.js?

I’ve used this before

const delay = (ms) => new Promise((res) => setTimeout(res, ms));
await delay(5000); // 5s