I am trying to embed a URL into my pop-ups for a rubbish collection map.
If the collection week of a boundary is week one, I want the URL to go to the week one page.
If the collection week of a boundary is week two, I want the URL to go to the week two page.
I would like the URL to be embed into the word "here" in the pop-up as seen below:

What expression is needed to pass through the correct URL for each pop-up? I have started with what I have below but am aware URLs need to be formatted in a certain way. Any pointers much appreciated!
if ($feature.Week == "Week 1") {
return "https://www.ashburtondc.govt.nz/?a=57072"
}
if ($feature.Week == "Week 2") {
return "https://www.ashburtondc.govt.nz/?a=57073"
}