Partial use of text + data, how?

I want to put a text that puts half text in normal format and that follows the text that takes it from the database

example:

Inicio / + (text from database)

inicio / Ministerios

This is the code I use

$w.onReady( function () {
$w(“#ministeriosDataset”).onReady( () => {
let currentItem = $w(“#ministeriosDataset”).getCurrentItem();
$w(“#text11006”).text = 'Inicio / ’ + ‘title’
} );
} );

how can i do?

Thanks

let currentItem = $w(" #ministeriosDataset ").getCurrentItem().title; //title is the field key in your collection

$w(" #text11006 ").text = ("Inicio " + currentItem);

Many Thanks Mike

Other thing please, if you know

How can I put the text “Inicio” with link share to Home

Thanks

different question, open a new thread

Ok Mike many thanks