Display image with srcet from ACF image field

function acfimg( $img ) {
$img_srcset = wp_get_attachment_image_srcset( $img[‘ID’] );
$img_sizes = wp_get_attachment_image_sizes( $img[‘ID’] );
echo ‘'.$img['alt'].'‘;
}