async function getPlaceholderText(sentence, word) {
const response = await fetch(`https://api.globus.studio/v2/ph_text?sentence=${encodeURIComponent(sentence)}&word=${encodeURIComponent(word)}`);
console.log('Response:', response);
const text = await response.text();
console.log(text);
const p = document.createElement('p');
p.textContent = text;
document.body.appendChild(p);
}
getPlaceholderText("5", "10");