Modifying HTML Content and Attributes

Which property should you use when creating elements with dynamic user input?
const div = document.createElement('div');
div.innerHTML = '<p>Hello</p>';
div.textContent = 'Hello';
Next Question (14/20)