Accessing application running in EKS cluster

i have created multinode eks cluster from kodekloud EKS play ground. Application is ruuning but how to acces the application thriugh browser.
When running kubectl get nodes -o wide not getting external ip to access (since i used nodeport service).
tried with accessing internal ip of nodes to access the application but not able to access

If the goal here is to access your services on your local browser, I’d do something like this to accomplish this with the playground:

  1. Set up the EKS cluster for access from your laptop/local computer.
  2. Use kubectl port-forward service/SERVICE-NAME 10000:SERVICE-PORT &
  3. Browser your service at http://localhost:10000

If you have more services, repeat (2) and (3) as needed on other ports.