Adding scroll bar to JTextArea

Report a typo
Hey there! This problem might be a bit unpredictable, but give it a go and let us know how you do!
Consider following code snippet, what is the correct way to add a vertical scroll bar to a JTextArea using JScrollPane in Java Swing?
JTextArea textArea = new JTextArea(5, 30);
// missing code
frame.getContentPane().add(panel);
frame.setVisible(true);
Select one or more options from the list
___

Create a free account to access the full topic