以下のコードの実行結果はどうなりますか? ```javascript function add(a, b) { return a + b; } const result = add(5, 3); console.log(result); ```