There are 3 errors in this code - select the line numbers below to show where the 3 errors occur
01.
public
class
ParallelPeople {
02.
03.
public
static
void
main(String[] args) {
04.
05.
String people[] = {
"rog lippo"
,
"unc tinitus"
};
06.
int
ages[] = {26, 98};
07.
int
height[] = {180 155};
08.
String sport[] = {
"Soccer"
,
"Golf"
};
09.
10.
int
i;
11.
for
(i = 0; i <= 4; i++){
12.
System.
out
.println(people[i] +
" is "
+ ages[i+1] +
" years old,"
+
13.
" is "
+ height[i] +
" cm tall "
+
14.
"and loves to play "
+ sport[i] );
15.
}
16.
}
17.
}