0% completed
let fruits = "apple, banana, cherry";
let fruitArray = fruits.split(", ");
console.log(fruitArray[1]);
let msg = "Hello World";
console.log(msg.toUpperCase());
let greeting = "Hi there!";
console.log(greeting.charAt(3));
.....
.....
.....