Tell me, please, what mistake I made, already googled, I can not understand. All is correct, except "The displayed text must be the square of the variable number.
package com.codegym.task.task01.task0140;
/*
Display the square of a number
*/
public class Solution {
public static int number = 25;
public static void main(String[] args) {
//write your code here
int number = 6;
System.out.println(number * number);
}
}