Define a function authenticate
that takes two arguments, email
and password
. The function should compare these arguments with the email
and password
properties of a predefined user
object. If they match, the function should display "Login Successful.", otherwise, "Invalid Credentials." should be returned.