<!DOCTYPE html>
<html>
<head>
<title>Income greather than 500 000</title>
<meta charset="UTF-8">
<script src="taxForms.js"></script>
</head>
<body>
<script>
console.log(taxForms.filter(form => form.income > 500000));
</script>
</body>
</html>