Alright I can't seem to think about this correctly, I want to see if any of the elements in the first array have the same matching value in the second array and if it does print the value that matches
Code:
public void compareArrays()
{
for(int i = 0; i < convertedBlockedApps.length;i++)
{
for(int x = 0; x < convertedParsedString.length; x++)
{
}
}
}
Comment