function hackSystem() {
console.log("Hacking in progress...");
setTimeout(() => {
console.log("System breached!");
}, 3000);
}
hackSystem();