What does this local-observation calculation print?
JavaScript
const debt = {
changesPerQuarter: 6,
extraMinutesPerChange: 40,
};
const interestHours =
(debt.changesPerQuarter * debt.extraMinutesPerChange) / 60;
console.log(`${interestHours} hours per quarter`);