"use strict"; const helloFn = (name) => { return `Hola ${name}`; }; console.log(helloFn("Mundo"));