以下のコードで、変数`result`に代入される値は何ですか? ```typescript let value: any = "hello"; let length = value.length; value = 123; let result = value.length; ```