I have this task .It must be displayed The passed string four times and every time on a new línea but I can't do it package com.codegym.task.task02.task0201; /* Implement the print method */ public class Solution { public static void main(String[] args) { print("Java is easy to learn!"); print("Java is object-oriented!"); print("Java is platform-independent!"); } public static void print(String s) { //write your code here System.out.print(s); System.out.printf("Java is for you"); } }