Trouble with codes Json

I keep getting this error message Im not a tech and dont rreally understand code, I use chatgpt but over and over again it give the code with the same error message, if anyone can help me fix this I’ll be most gracefull.
const zipCodes = [
β€œ35111”, β€œ35116”, β€œ35117”, β€œ35118”, β€œ35209”, β€œ35210”, β€œ35211”,
β€œ35211”, β€œ35242”, β€œ35243”, β€œ35004”, β€œ35243”, β€œ35004”, β€œ35052”,
β€œ35112”, β€œ35120”, β€œ35173”, β€œ35178”, β€œ35953”, β€œ35972”, β€œ35987”,
β€œ35137”, β€œ35185”, β€œ35144”, β€œ35187”, β€œ35143”, β€œ35238”, β€œ35176”,
β€œ35078”, β€œ35007”
];

// Loop through each zip code and make a request
zipCodes.forEach((zipCode) => {
pm.sendRequest({
url: https://api.gateway.attomdata.com/propertyapi/v1.0.0/property/detail?postalcode=${zipCode},
method: β€˜GET’,
header: {
β€œapikey”: β€œ407c795921dcf7f963309e42fae2a78c”
}
}, function (err, res) {
if (err) {
console.error(Error fetching data for zip code ${zipCode}:, err);
} else {
try {
// Parse JSON response
const jsonResponse = res.json();
console.log(Data for zip code ${zipCode}:, jsonResponse);
} catch (parseError) {
console.error(Failed to parse JSON for zip code ${zipCode}:, parseError);
console.log(β€˜Raw response:’, res.text());
}
}
});
});

What error are you getting?

Can you please use the preformatted text option in the editor when pasting code. It stops everything from being aligned to the left making it very hard to read.

If that is a real API key, you might want to edit your post and redact the info.