Add content immediately after last footer widget area
<?php
//* Do NOT include the opening php tag shown above. Copy the code shown below.
add_filter( "genesis_structural_wrap-footer-widgets", 'test_structural_wrap', 10, 2);
function test_structural_wrap( $output, $original_output ) {
if( 'close' == $original_output ) {
$output = '<div>test</div></div>';
}
return $output;
}