function countToFive() { let firstFive = "12345"; let len = firstFive.length; // Fix the line below for (let i = 0; i < len; i++) { // Do not alter code below this line console.log(firstFive[i]); } }