Show More button wont move with text box. I have grouped button and text... still wont work... Please help

// For full API documentation, including code examples, visit Velo API Reference - Wix.com
let fullText; // variable to hold the full text
let shortText; // variable to hold the short version of the text

$w.onReady( function () {
// how many characters to include in the shortened version
const shortTextLength = 500;
// read the full text and store it in the fullText variable
fullText = $w(“#text12”).text;
// grab the number of characters defined in shortTextLength and store them in the shortText variable
shortText = fullText.substr(0, shortTextLength) + “…”;
// set the contents of the text element to be the short text
$w(“#text12”).text = shortText;
//TODO: write your page related code here…

});

export function button1_click(event) {
// check the contents of the text element
if ($w(“#text12”).text === shortText) {
// if currently displaying short text, display the full text
$w(“#text12”).text = fullText;
$w(“#button1”).label = “Show less”;
} else {
// if currently displaying full text, display the short text
$w(“#text12”).text = shortText;
$w(“#button1”).label = “Show more”;
} //Add your code for this event here:
}