Which statement creates an empty JavaScript object and assigns it to car?
car
const car = "{}";
const car; {}
const car = [];
const car = {};