async function test() { try { const res = await fetch('http://localhost:3000/api/owners'); const json = await res.json(); console.log(JSON.stringify(json.features[0].properties, null, 2)); } catch (err) { console.error("Error:", err); } } test();