Find the security boundary broken by this localized welcome message.
JavaScript
function showWelcome(container, messages, customerName) {
const welcome = messages.welcome.replace(
"{customerName}",
customerName,
);
container.innerHTML = welcome;
}