How can I write "print $F[4] if exists $F[4]" even simpler?



How can I write
print $F[4] if exists $F[4];
even simpler?
print if exists for $F[4];
print if exists $_ for $F[4];
don't work.
.