/* DEFINATION: Function parameters are the variables specified in the function
definition, and function arguements are the values passed as arguements.*/
//code:
function saySomething(phrase){
console.log("You said: "+ phrase)
}
saySomething("Hello how are you?")