Crea una lista con los siguientes elementos: - Tu nombre - Tu edad (number) - ¿Eres desarrollador? (boolean) - Tu fecha de nacimiento (Date)
function myInfo(firstName, age, isDev, birthDate){ return [firstName, age, isDev, birthDate] } myInfo('Raul', 28, true, new Date(1988, 8, 28))