fixed by myself, was really stupid
<?php
// Grab the metadata from the database
$text = get_post_meta( get_the_ID(), 'faqt_topquestion', true );
if ($text) { ?>
<ul>
<li><a href="<?php echo get_permalink(); ?>"><?php echo get_the_title(); ?></a></li>
</ul>
<?php
}
?>