It's a simple FileList of images.
Object.keys(pet).forEach((key) => {
if (key === "images") {
formData.append("images", pet[key]); //my fileList
} else {
formData.append(key, pet[key]);
}
});
Console.log of this FileList >>

But when I try to access the same fileList at the back-end, it shows an empty array...
const images = req.files;
console.log(images); // equals to []
And when I tried like this:
const images = req.body.images;
console.log(images); // Returns this: [object FileList].
When I use this same endpoint with Postman works perfectly...