Q15
Single choice
Given the following code:
<fx:Binding source="message" destination="input.text" twoWay="true" /> <fx:Script>
<![CDATA[
[Bindable]
private var message:String = "Hello User";
]]>
</fx:Script>
<s:TextInput id="input" text="Goodbye User" />
What will be displayed in the text input control when the application first loads?