以下のコードの実行結果はどうなりますか? ```javascript function showNumber() { console.log(42); } function showText() { console.log("Hello"); } showText(); showNumber(); ```