You will find out later. You will specify a function parameter to be able to pass data into the function. You can name the parameter almost anything, but it is recommended to name it something which explains what the data is. Continuing your example above, I would recommend naming the parameter message. Once the function is called, the actual data being passed into the function’s parameters are called arguments which are really just local function variables. You can have multiple arguments. I have added a second parameter called whoSaidThat, so I could also pass in someone’s name.