
FAUSTO CAMACHO
766 PointsWhat can I use to change the upper case method to a variable
let firstName = 'Fausto';
let lastName = 'Camacho';
let role = 'developer';
let msg = firstName + ' ' + lastName + ': ' + role;
1 Answer

Peter Vann
Treehouse Moderator 35,350 PointsHi Fausto!
You don't need to.
Just use role.toUpperCase() in that part of your challenge code.
I hope that helps.
Stay safe and happy coding!