For a start, we can use variables inside functions. Like creating var name = "Ron"; and using it in the display statement.
var name = "Ron";
Make sure to pick var followed by name and then =, "Ron", ;.
var
name
=
"Ron"
;