JavaScript Kopiuj treść jednego Div na drugą

let content = $('div#first').html();
$('div#second').html(content);
Syntax Error