How to download multiple files from S3 and download as a zip file

@Tess
OK so I am at the point where I can download the folder but nothing is in it!

All the keys are there: Each Key is in the following format: parentfolder/clientname/type/filename.pdf
There are 2 keys total.
I had to iterate through the result when I read the bucket location because the Contents is an array:
Screen Shot 2022-06-09 at 3.12.58 PM

var sdocs = zip.folder("Payment-");
for(i=0; i<listAllFilesForZip.data.Contents.length; i++){

sdocs.file(readEachFileToAddToZip.fileKey, readEachFileToAddToZip.data.Body, {base64: true})

console.log('logging ' + i + ' ' + listAllFilesForZip.data.Contents[i].Key)
}

Screen Shot 2022-06-09 at 4.08.12 PM

Any thoughts?