function generateLink() {
var userInput = document.getElementById('userInput').value;
document.getElementById('dynamicLink').href = 'https://example.com/search?q=' + userInput;
}
function generateLink() {
var userInput = document.getElementById('userInput').value;
document.getElementById('dynamicLink').href = 'https://example.com/search?q=' + userInput;
}