I’m currently working in digital marketing, where I focus on building brand presence and driving engagement. At the same time, I’m actively learning programming to broaden my skill set and explore new opportunities in the tech industry.
``` function getRandomInt(max) { return Math.floor(Math.random() * max); }
const names = [“Alice”, “John”, “Charlie”, “Diana”]; const randomName = names[getRandomInt(names.length)];
console.log(Hello, ${randomName}!
);
const now = new Date();
console.log(Current time is: ${now.toLocaleTimeString()}
);
```