以下のコードの実行結果は何ですか? ```ruby def calculate_rectangle_area(width, height) width * height end result = calculate_rectangle_area(4, 5) puts result ```