'How to add a string into a StringArray [duplicate]

I've already created the whole code, but i don't know how to add a String to a String array.

here's my code:

**CandidateDAO candidatedao = new CandidateDAO();
        String fill = null;
        CandidateReport[] candidatesReports = candidatedao.getAllCandidates();
        String [] newArray = ;
        
        for(int i = 0; i < candidatesReports.length; i++) {
            fill = candidatesReports[i].getCandidateId() + ":" + this.calculateGrade(candidatesReports[i]);
            
        }
            
        return newArray;*****


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source