Given a `sales` table where `amount` is an integer column, what does this query compute?SELECT SUM(amount) / COUNT(*) FROM sales;