This is another page

Welcome to the new page!

uh hi mama

:)

const apiKey = "YOUR_GOOGLE_API_KEY"; const cx = "YOUR_SEARCH_ENGINE_ID"; const query = "javascript"; const url = `https://www.googleapis.com/customsearch/v1?q=${query}&key=${apiKey}&cx=${cx}`; fetch(url) .then(response => response.json()) .then(data => { console.log(data.items); // Google search results }) .catch(error => console.error("Error:", error));