what is my mistake
package com.codegym.task.task02.task0202;
/*
Where does a Person come from?
*/
public class Solution {
public static void main(String[] args) {
Person Aryan = new Person();
}
public static class Person {
String name = "Aryan";//write your code here
int weight = 57;
int age = 15;
int money = 500;
}
}