Why is my array of objects not being displayed from JavaScript to HTML properly?
const initial = [ { name: "Alice", price: 30, occupation: "Writer" }, { name: "Bob", price: 50, occupation: "Teacher"} ] const extraFreelancers = [ { name: "Dr. Slice", price: 25, occupation: "Gardener" }, { name: "Dr. Pressure", price: 51, occupation:…