I\'ve tried console.log and looping through it using for in.
console.log
for in
Here it the MDN Reference on FormData.
Both attempts are in this fi
Already answered but if you want to retrieve values in an easy way from a submitted form you can use the spread operator combined with creating a new Map iterable to get a nice structure.
new Map([...new FormData(form)])