I have a code here but I don't understand how to convert it. The prompt should be asking your name but I need to make the first letter uppercase. The characters should be on lowercase.
var myName = "Rafael";
var messge = "Hello";
var yourName = prompt("What is your name? ");
console.log("My name is " + myName + ", " + messge + " " + yourName + "." );