To pass a value to the variable, we place it between the parentheses when we call the function, like here with greet("Anna").
greet("Anna")
Make sure to pick greet followed by ( and then "Anna", ).
greet
(
"Anna"
)