I am reading 2 arrays They are like:
{xxxxx, yyy, aaaaaa, rrrrrrrr}
and
{222, 44, 55, 77}
I want to have output as
xxxxx === 222
yyy === 44
aaaaaa === 55
rrrrrrrr === 77
How can I do that formatting?
I am trying this for achieve my goal
System.out.println(array[1] + "===" + array1[1]);
How can I achieve this?