✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
let name = "Василь";
function sayHi() {
alert(name);
}
setTimeout(function() {
let name = "Петро";
sayHi();
}, 1000);