// Try playing around with modifying properties and adding ones to see what happens
const car: { type: string, model: string, year: number } = {
type: "Toyota",
model: "Corolla",
year: 2009
};
console.log(car);
{ type: 'Toyota', model: 'Corolla', year: 2009 }