Hello world! I'm talking about getting a string from the user in Alice3. I have a program with Alice here and I want her to say hello to the user. Let's put in a comment. Just type something: // Say hello to user What I need is a variable and going to make this a string, And it's going to be the user's name: userName. And for the initializer I'm just going to pick "hello" for right now and saying OK. but I'm going to change that going to do is go to functions, And under functions, I'm going to say getStringFromUser. and this is going to require a message. That's the prompt that the user is going to see. We're going to make it say "What is your name?" I'm going to drag that over here to replace the word "hello" that we put in there just temporarily. So for my custom string I'm going to say "What is your name?" OK. and then I want Alice to say hello to me so let's go back to the procedures for Alice. Alice is going to say hello and plus something. and that something is going to be the user's name. And we'll run this. It's going to say "What is your name?" I'll type in "Janet", and hit OK. That was fast! and it says "Hello Janet" Let's add the duration of 1.0 I don't know if you noticed but it also said HelloJanet like was all one word. So I'm going to edit this and add a space after the word hello. Let's make that a capital H, while I'm editing, say OK. Let's run this again, "What is your name?" I type Janet and hit OK and she says hello Janet. That's it!