Tell us what’s happening:
i couldnt get what is the error in my code and i am stuck . i don’t know where i went wrong and couldn’t find the solution as well.
Your code so far
const lowercaseWord = "camelcase";
// User Editable Region
// User Editable Region
console.log(lowercaseWord.slice(0, 5) + lowercaseWord[5].toUpperCase());
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:147.0) Gecko/20100101 Firefox/147.0
Challenge Information:
Build a String Formatter - Step 15