Hi I've tried typing it out exactly as the downloaded solution after so many errors. I typed it out right with no errors, answer comes out correctly but I'm still being told the task failed to meet requirements and the requirement bubbles are orange with question marks
package en.codegym.java.core.level01.task06;
public class Solution
{
public static void main(String[] args)
{
// Declare variable currentYear and assign it the value 2025
int currentYear = 2025;
// Declare variable projectAge
int projectAge;
// Calculate the project age as the difference between currentYear and 2019
projectAge =currentYear - 2019;
// Print the project age to the screen
System.out.println(projectAge);
}
}