How to get an array of date for a certain amount of days

How can I get an array of dates 5days from current date.
For Example
Today’s date is Sat, Feb 12, 2022 at my location currently.

So i how will i get an array of date 5days from now like the example below

const dateFromNow = [
  'Sat, Feb 12, 2022',
  'Sun, Feb 13, 2022',
  'Mon, Feb 14, 2022',
  'Tus, Feb 15, 2022',
  'Wed, Feb 16, 2022 ',
];