Dropdown Menu

This is my code for a wix website, and I am trying to get it to when a person clicks on a piece of text, another piece of text drops down on the mobile website. The code worked one time and then it stopped working ever since. Is there something wrong with this code?

export function text3_click(event) {
//Add your code for this event here:
if ($w(‘#text1’).collapsed) {
$w(‘#text1’).expand();
}
else
$w(‘#text1’).collapse();
}