Changing written code into blocks

hello, I have piece of written code that I need to transform into blocks,
I used ai (don't judge im a newbie) for my project and It gave me written code, i looked into the blocks but I couldn't find the right pieces. could anyone help me if I gave them the code and they can make it to an image whereas I can understand it?

when bookmark.Click do

    set url to TextBox1.Text
    set domain to get domain from url
    set favicon to "https://icons.duckduckgo.com/ip3/" + domain + ".ico"

    if Button5.Text = "" then
        set Button5.Text to url
        set Button5.Image to favicon
    else if Button6.Text = "" then
        set Button6.Text to url
        set Button6.Image to favicon
    else if Button7.Text = "" then
        set Button7.Text to url
        set Button7.Image to favicon
    else if Button8.Text = "" then
        set Button8.Text to url
        set Button8.Image to favicon
    else if Button9.Text = "" then
        set Button9.Text to url
        set Button9.Image to favicon
    else
        ShowAlert("All the buttons are occupied!")
    end if
end when

Thank you.

what was the question you asked also known as prompt?
Taifun

"I am doing a project in appinventor, the project is a lightweight browser, I am thinking of adding a bookmark feature to it. I am thinking of marking the url given to the buttons under the button with the icon. And I want to open that site when I press the buttons. I gave an example of this above. How do I do it?" this was the prompt (I used turkish so I had to translate it so its a little bit messy. Also prompted it to use favicons to mark the website icon. I can give you the aia file if you want.