Please i am beginner totaly in programming, and i am starting with java... Please my problem is that i don't know how to insert a text area in my code. Please i really need help from you guyz. Here is my CODESorry for the way the codes are arranged, i use mobile phone to write the codes thats why...Thanks in Advance!!!import javax.swing.*; public class HelloJava{ public static void main(String[] args){ JFrame frame=new JFrame("Hello, Java"); JLabel label= new JLabel("Hello, Java!", JLabel.CENTER); frame.get.ContentPane().add(label); frame.setSize(500, 500); frame.setVisible(true); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);}}