Find the output of the following code:

//What is \r doing?

public class HelloPrinter
{
	public static void main(String[] args)
	{	
	   System.out.println("hellois fun\rJava ");
		
	}

}