以下のコードで存在しないインデックスにアクセスした場合の結果はどうなりますか? ```typescript let fruits: string[] = ["りんご", "バナナ"]; console.log(fruits[5]); ```