A Function called printMessage that takes a string as a parameter and prints the string.
FOR EXAMPLE, this call:
printMessage("This is my function working!")
printMessage("Yippee!")
Will generate this output:
MESSAGE: This is my function working!
MESSAGE: Yippee!