以下のコードの空欄に入る適切なキーワードは何ですか? ```javascript function calculateTax(price) { const tax = price * 0.1; ______ price + tax; } const totalPrice = calculateTax(1000); ```